Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
295 lines (230 loc) · 8.39 KB

SDL_DirectFB_video.c

File metadata and controls

295 lines (230 loc) · 8.39 KB
 
Feb 1, 2006
Feb 1, 2006
2
SDL - Simple DirectMedia Layer
Jan 24, 2010
Jan 24, 2010
3
Copyright (C) 1997-2010 Sam Lantinga
Feb 1, 2006
Feb 1, 2006
5
6
7
8
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
Feb 1, 2006
Feb 1, 2006
10
11
12
13
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
Feb 1, 2006
Feb 1, 2006
15
16
17
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Feb 1, 2006
Feb 1, 2006
19
20
Sam Lantinga
slouken@libsdl.org
Oct 3, 2003
Oct 3, 2003
21
Aug 11, 2007
Aug 11, 2007
22
23
SDL1.3 implementation by couriersud@arcor.de
Aug 11, 2007
Aug 11, 2007
25
26
Feb 21, 2006
Feb 21, 2006
27
#include "SDL_config.h"
28
29
30
31
32
33
34
35
36
/* DirectFB video driver implementation.
*/
#include <fcntl.h>
#include <unistd.h>
#include <sys/mman.h>
#include <directfb.h>
Nov 1, 2005
Nov 1, 2005
37
#include <directfb_version.h>
Jan 11, 2009
Jan 11, 2009
38
#include <directfb_strings.h>
39
40
41
#include "SDL_video.h"
#include "SDL_mouse.h"
Feb 16, 2006
Feb 16, 2006
42
43
44
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
45
46
#include "SDL_DirectFB_video.h"
#include "SDL_DirectFB_events.h"
Aug 31, 2008
Aug 31, 2008
47
48
#include "SDL_DirectFB_render.h"
#include "SDL_DirectFB_mouse.h"
Aug 11, 2007
Aug 11, 2007
49
Jan 4, 2009
Jan 4, 2009
50
51
#include "SDL_DirectFB_dyn.h"
Aug 11, 2007
Aug 11, 2007
52
53
54
55
/* Initialization/Query functions */
static int DirectFB_VideoInit(_THIS);
static void DirectFB_VideoQuit(_THIS);
Aug 31, 2008
Aug 31, 2008
56
57
static int DirectFB_Available(void);
static SDL_VideoDevice *DirectFB_CreateDevice(int devindex);
Aug 11, 2007
Aug 11, 2007
58
Aug 31, 2008
Aug 31, 2008
59
60
61
62
VideoBootStrap DirectFB_bootstrap = {
"directfb", "DirectFB",
DirectFB_Available, DirectFB_CreateDevice
};
63
64
65
/* DirectFB driver bootstrap functions */
Jul 10, 2006
Jul 10, 2006
66
67
static int
DirectFB_Available(void)
Jan 4, 2009
Jan 4, 2009
69
70
71
if (!SDL_DirectFB_LoadLibrary())
return 0;
SDL_DirectFB_UnLoadLibrary();
Jul 10, 2006
Jul 10, 2006
72
return 1;
Jul 10, 2006
Jul 10, 2006
75
76
static void
DirectFB_DeleteDevice(SDL_VideoDevice * device)
Jan 4, 2009
Jan 4, 2009
78
79
80
SDL_DirectFB_UnLoadLibrary();
SDL_DFB_FREE(device->driverdata);
SDL_DFB_FREE(device);
Jul 10, 2006
Jul 10, 2006
83
84
static SDL_VideoDevice *
DirectFB_CreateDevice(int devindex)
Jul 10, 2006
Jul 10, 2006
86
87
SDL_VideoDevice *device;
Jan 4, 2009
Jan 4, 2009
88
89
90
if (!SDL_DirectFB_LoadLibrary())
return NULL;
Jul 10, 2006
Jul 10, 2006
91
/* Initialize all variables that we clean on shutdown */
Aug 11, 2007
Aug 11, 2007
92
93
94
SDL_DFB_CALLOC(device, 1, sizeof(SDL_VideoDevice));
/* Set the function pointers */
Jul 10, 2006
Jul 10, 2006
95
96
97
98
/* Set the function pointers */
device->VideoInit = DirectFB_VideoInit;
device->VideoQuit = DirectFB_VideoQuit;
Aug 11, 2007
Aug 11, 2007
99
100
101
102
103
104
device->GetDisplayModes = DirectFB_GetDisplayModes;
device->SetDisplayMode = DirectFB_SetDisplayMode;
device->PumpEvents = DirectFB_PumpEventsWindow;
device->CreateWindow = DirectFB_CreateWindow;
device->CreateWindowFrom = DirectFB_CreateWindowFrom;
device->SetWindowTitle = DirectFB_SetWindowTitle;
Jan 11, 2009
Jan 11, 2009
105
device->SetWindowIcon = DirectFB_SetWindowIcon;
Aug 11, 2007
Aug 11, 2007
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
device->SetWindowPosition = DirectFB_SetWindowPosition;
device->SetWindowSize = DirectFB_SetWindowSize;
device->ShowWindow = DirectFB_ShowWindow;
device->HideWindow = DirectFB_HideWindow;
device->RaiseWindow = DirectFB_RaiseWindow;
device->MaximizeWindow = DirectFB_MaximizeWindow;
device->MinimizeWindow = DirectFB_MinimizeWindow;
device->RestoreWindow = DirectFB_RestoreWindow;
device->SetWindowGrab = DirectFB_SetWindowGrab;
device->DestroyWindow = DirectFB_DestroyWindow;
device->GetWindowWMInfo = DirectFB_GetWindowWMInfo;
#if SDL_DIRECTFB_OPENGL
device->GL_LoadLibrary = DirectFB_GL_LoadLibrary;
device->GL_GetProcAddress = DirectFB_GL_GetProcAddress;
device->GL_MakeCurrent = DirectFB_GL_MakeCurrent;
device->GL_CreateContext = DirectFB_GL_CreateContext;
device->GL_SetSwapInterval = DirectFB_GL_SetSwapInterval;
device->GL_GetSwapInterval = DirectFB_GL_GetSwapInterval;
device->GL_SwapWindow = DirectFB_GL_SwapWindow;
device->GL_DeleteContext = DirectFB_GL_DeleteContext;
#endif
Jul 10, 2006
Jul 10, 2006
130
131
device->free = DirectFB_DeleteDevice;
Jul 24, 2010
Jul 24, 2010
132
fprintf(LOG_CHANNEL, "Device setup %p!!\n", device->ShowWindow);
Jul 10, 2006
Jul 10, 2006
133
return device;
Aug 11, 2007
Aug 11, 2007
134
135
136
137
error:
if (device)
free(device);
return (0);
Jan 11, 2009
Jan 11, 2009
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
static const DirectFBSurfaceDrawingFlagsNames(drawing_flags);
static const DirectFBSurfaceBlittingFlagsNames(blitting_flags);
static const DirectFBAccelerationMaskNames(acceleration_mask);
static void
DirectFB_DeviceInformation(IDirectFB * dfb)
{
DFBGraphicsDeviceDescription desc;
int n;
dfb->GetDeviceDescription(dfb, &desc);
fprintf(LOG_CHANNEL, "DirectFB Device Information\n");
fprintf(LOG_CHANNEL, "===========================\n");
fprintf(LOG_CHANNEL, "Name: %s\n", desc.name);
fprintf(LOG_CHANNEL, "Vendor: %s\n", desc.vendor);
fprintf(LOG_CHANNEL, "Driver Name: %s\n", desc.driver.name);
fprintf(LOG_CHANNEL, "Driver Vendor: %s\n", desc.driver.vendor);
fprintf(LOG_CHANNEL, "Driver Version: %d.%d\n", desc.driver.major,
desc.driver.minor);
fprintf(LOG_CHANNEL, "\nVideo memoory: %d\n", desc.video_memory);
fprintf(LOG_CHANNEL, "\nBlitting flags:\n");
for (n = 0; blitting_flags[n].flag; n++) {
if (desc.blitting_flags & blitting_flags[n].flag)
Jul 24, 2010
Jul 24, 2010
166
fprintf(LOG_CHANNEL, " %s\n", blitting_flags[n].name);
Jan 11, 2009
Jan 11, 2009
167
168
169
170
171
}
fprintf(LOG_CHANNEL, "\nDrawing flags:\n");
for (n = 0; drawing_flags[n].flag; n++) {
if (desc.drawing_flags & drawing_flags[n].flag)
Jul 24, 2010
Jul 24, 2010
172
fprintf(LOG_CHANNEL, " %s\n", drawing_flags[n].name);
Jan 11, 2009
Jan 11, 2009
173
174
}
Jul 24, 2010
Jul 24, 2010
175
Jan 11, 2009
Jan 11, 2009
176
177
178
fprintf(LOG_CHANNEL, "\nAcceleration flags:\n");
for (n = 0; acceleration_mask[n].mask; n++) {
if (desc.acceleration_mask & acceleration_mask[n].mask)
Jul 24, 2010
Jul 24, 2010
179
fprintf(LOG_CHANNEL, " %s\n", acceleration_mask[n].name);
Jan 11, 2009
Jan 11, 2009
180
181
182
183
184
}
}
Aug 11, 2007
Aug 11, 2007
185
186
static int
DirectFB_VideoInit(_THIS)
Jul 10, 2006
Jul 10, 2006
188
IDirectFB *dfb = NULL;
Jan 4, 2009
Jan 4, 2009
189
DFB_DeviceData *devdata = NULL;
Aug 31, 2008
Aug 31, 2008
190
char *stemp;
Aug 11, 2007
Aug 11, 2007
191
DFBResult ret;
Jan 4, 2009
Jan 4, 2009
193
194
SDL_DFB_CALLOC(devdata, 1, sizeof(*devdata));
Aug 11, 2007
Aug 11, 2007
195
SDL_DFB_CHECKERR(DirectFBInit(NULL, NULL));
Jan 4, 2009
Jan 4, 2009
197
198
/* avoid switching to the framebuffer when we
* are running X11 */
Jan 11, 2009
Jan 11, 2009
199
stemp = SDL_getenv(DFBENV_USE_X11_CHECK);
Jan 4, 2009
Jan 4, 2009
200
201
202
203
204
205
if (stemp)
ret = atoi(stemp);
else
ret = 1;
if (ret) {
Jan 11, 2009
Jan 11, 2009
206
if (SDL_getenv("DISPLAY"))
Jan 4, 2009
Jan 4, 2009
207
208
209
210
211
DirectFBSetOption("system", "x11");
else
DirectFBSetOption("disable-module", "x11input");
}
Jul 24, 2010
Jul 24, 2010
212
213
#if USE_MULTI_API
devdata->use_linux_input = 1; /* default: on */
Jan 11, 2009
Jan 11, 2009
214
stemp = SDL_getenv(DFBENV_USE_LINUX_INPUT);
Jan 4, 2009
Jan 4, 2009
215
216
if (stemp)
devdata->use_linux_input = atoi(stemp);
Jul 24, 2010
Jul 24, 2010
217
218
219
#else
devdata->use_linux_input = 0; /* no way to support this ... */
#endif
Jan 4, 2009
Jan 4, 2009
220
221
222
223
224
if (!devdata->use_linux_input)
DirectFBSetOption("disable-module", "linux_input");
SDL_DFB_CHECKERR(DirectFBCreate(&dfb));
Oct 3, 2003
Oct 3, 2003
225
Jan 11, 2009
Jan 11, 2009
226
DirectFB_DeviceInformation(dfb);
Aug 31, 2008
Aug 31, 2008
227
devdata->use_yuv_underlays = 0; /* default: off */
Jan 11, 2009
Jan 11, 2009
228
stemp = SDL_getenv(DFBENV_USE_YUV_UNDERLAY);
Aug 31, 2008
Aug 31, 2008
229
230
if (stemp)
devdata->use_yuv_underlays = atoi(stemp);
Jul 10, 2006
Jul 10, 2006
231
Jan 4, 2009
Jan 4, 2009
232
Aug 31, 2008
Aug 31, 2008
233
/* Create global Eventbuffer for axis events */
Jan 4, 2009
Jan 4, 2009
234
if (devdata->use_linux_input) {
Jan 11, 2009
Jan 11, 2009
235
236
237
SDL_DFB_CHECKERR(dfb->CreateInputEventBuffer(dfb, DICAPS_ALL,
DFB_TRUE,
&devdata->events));
Dec 8, 2008
Dec 8, 2008
238
} else {
Jan 11, 2009
Jan 11, 2009
239
240
241
242
SDL_DFB_CHECKERR(dfb->CreateInputEventBuffer(dfb, DICAPS_AXES
/*DICAPS_ALL */ ,
DFB_TRUE,
&devdata->events));
Dec 8, 2008
Dec 8, 2008
243
}
Oct 3, 2003
Oct 3, 2003
244
Aug 11, 2007
Aug 11, 2007
245
devdata->initialized = 1;
Jan 11, 2009
Jan 11, 2009
246
247
248
249
/* simple window manager support */
stemp = SDL_getenv(DFBENV_USE_WM);
if (stemp)
Jan 14, 2009
Jan 14, 2009
250
devdata->has_own_wm = atoi(stemp);
Jan 11, 2009
Jan 11, 2009
251
else
Jan 14, 2009
Jan 14, 2009
252
devdata->has_own_wm = 0;
Jan 11, 2009
Jan 11, 2009
253
Aug 11, 2007
Aug 11, 2007
254
255
devdata->dfb = dfb;
devdata->firstwin = NULL;
Aug 24, 2002
Aug 24, 2002
256
Aug 11, 2007
Aug 11, 2007
257
_this->driverdata = devdata;
Oct 3, 2003
Oct 3, 2003
258
Aug 31, 2008
Aug 31, 2008
259
DirectFB_InitModes(_this);
Oct 3, 2003
Oct 3, 2003
260
Aug 11, 2007
Aug 11, 2007
261
#if SDL_DIRECTFB_OPENGL
Aug 31, 2008
Aug 31, 2008
262
DirectFB_GL_Initialize(_this);
Aug 11, 2007
Aug 11, 2007
263
#endif
Aug 24, 2002
Aug 24, 2002
264
Aug 11, 2007
Aug 11, 2007
265
266
DirectFB_AddRenderDriver(_this);
DirectFB_InitMouse(_this);
Aug 26, 2008
Aug 26, 2008
267
DirectFB_InitKeyboard(_this);
Aug 31, 2008
Aug 31, 2008
268
Aug 11, 2007
Aug 11, 2007
269
return 0;
Jul 10, 2006
Jul 10, 2006
270
Aug 11, 2007
Aug 11, 2007
272
error:
Jan 4, 2009
Jan 4, 2009
273
SDL_DFB_FREE(devdata);
Aug 11, 2007
Aug 11, 2007
274
275
SDL_DFB_RELEASE(dfb);
return -1;
Aug 11, 2007
Aug 11, 2007
278
279
static void
DirectFB_VideoQuit(_THIS)
Aug 11, 2007
Aug 11, 2007
281
282
DFB_DeviceData *devdata = (DFB_DeviceData *) _this->driverdata;
Aug 31, 2008
Aug 31, 2008
283
284
285
DirectFB_QuitModes(_this);
DirectFB_QuitKeyboard(_this);
DirectFB_QuitMouse(_this);
Aug 31, 2008
Aug 31, 2008
287
SDL_DFB_RELEASE(devdata->events);
Aug 11, 2007
Aug 11, 2007
288
SDL_DFB_RELEASE(devdata->dfb);
Aug 11, 2007
Aug 11, 2007
290
#if SDL_DIRECTFB_OPENGL
Aug 31, 2008
Aug 31, 2008
291
DirectFB_GL_Shutdown(_this);
Aug 11, 2007
Aug 11, 2007
292
#endif
Aug 31, 2002
Aug 31, 2002
293
Aug 11, 2007
Aug 11, 2007
294
295
devdata->initialized = 0;
}