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

Latest commit

 

History

History
316 lines (248 loc) · 8.72 KB

SDL_DirectFB_video.c

File metadata and controls

316 lines (248 loc) · 8.72 KB
 
Feb 1, 2006
Feb 1, 2006
2
SDL - Simple DirectMedia Layer
Dec 8, 2008
Dec 8, 2008
3
Copyright (C) 1997-2009 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
Jan 11, 2009
Jan 11, 2009
59
#if 0
Aug 11, 2007
Aug 11, 2007
60
61
static int DirectFB_SetDisplayGammaRamp(_THIS, Uint16 * ramp);
static int DirectFB_GetDisplayGammaRamp(_THIS, Uint16 * ramp);
Jan 11, 2009
Jan 11, 2009
62
#endif
Aug 11, 2007
Aug 11, 2007
63
Aug 31, 2008
Aug 31, 2008
64
65
66
67
VideoBootStrap DirectFB_bootstrap = {
"directfb", "DirectFB",
DirectFB_Available, DirectFB_CreateDevice
};
68
69
70
/* DirectFB driver bootstrap functions */
Jul 10, 2006
Jul 10, 2006
71
72
static int
DirectFB_Available(void)
Jan 4, 2009
Jan 4, 2009
74
75
76
if (!SDL_DirectFB_LoadLibrary())
return 0;
SDL_DirectFB_UnLoadLibrary();
Jul 10, 2006
Jul 10, 2006
77
return 1;
Jul 10, 2006
Jul 10, 2006
80
81
static void
DirectFB_DeleteDevice(SDL_VideoDevice * device)
Jan 4, 2009
Jan 4, 2009
83
84
85
SDL_DirectFB_UnLoadLibrary();
SDL_DFB_FREE(device->driverdata);
SDL_DFB_FREE(device);
Jul 10, 2006
Jul 10, 2006
88
89
static SDL_VideoDevice *
DirectFB_CreateDevice(int devindex)
Jul 10, 2006
Jul 10, 2006
91
92
SDL_VideoDevice *device;
Jan 4, 2009
Jan 4, 2009
93
94
95
if (!SDL_DirectFB_LoadLibrary())
return NULL;
Jul 10, 2006
Jul 10, 2006
96
/* Initialize all variables that we clean on shutdown */
Aug 11, 2007
Aug 11, 2007
97
98
99
SDL_DFB_CALLOC(device, 1, sizeof(SDL_VideoDevice));
/* Set the function pointers */
Jul 10, 2006
Jul 10, 2006
100
101
102
103
/* Set the function pointers */
device->VideoInit = DirectFB_VideoInit;
device->VideoQuit = DirectFB_VideoQuit;
Aug 11, 2007
Aug 11, 2007
104
105
106
107
108
109
110
111
112
113
114
115
116
device->GetDisplayModes = DirectFB_GetDisplayModes;
device->SetDisplayMode = DirectFB_SetDisplayMode;
#if 0
device->SetDisplayGammaRamp = DirectFB_SetDisplayGammaRamp;
device->GetDisplayGammaRamp = DirectFB_GetDisplayGammaRamp;
#else
device->SetDisplayGammaRamp = NULL;
device->GetDisplayGammaRamp = NULL;
#endif
device->PumpEvents = DirectFB_PumpEventsWindow;
device->CreateWindow = DirectFB_CreateWindow;
device->CreateWindowFrom = DirectFB_CreateWindowFrom;
device->SetWindowTitle = DirectFB_SetWindowTitle;
Jan 11, 2009
Jan 11, 2009
117
device->SetWindowIcon = DirectFB_SetWindowIcon;
Aug 11, 2007
Aug 11, 2007
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
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
142
143
144
145
device->free = DirectFB_DeleteDevice;
return device;
Aug 11, 2007
Aug 11, 2007
146
147
148
149
error:
if (device)
free(device);
return (0);
Jan 11, 2009
Jan 11, 2009
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
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)
printf(" %s\n", blitting_flags[n].name);
}
fprintf(LOG_CHANNEL, "\nDrawing flags:\n");
for (n = 0; drawing_flags[n].flag; n++) {
if (desc.drawing_flags & drawing_flags[n].flag)
printf(" %s\n", drawing_flags[n].name);
}
fprintf(LOG_CHANNEL, "\nAcceleration flags:\n");
for (n = 0; acceleration_mask[n].mask; n++) {
if (desc.acceleration_mask & acceleration_mask[n].mask)
printf(" %s\n", acceleration_mask[n].name);
}
}
Aug 11, 2007
Aug 11, 2007
196
197
static int
DirectFB_VideoInit(_THIS)
Jul 10, 2006
Jul 10, 2006
199
IDirectFB *dfb = NULL;
Jan 4, 2009
Jan 4, 2009
200
DFB_DeviceData *devdata = NULL;
Aug 31, 2008
Aug 31, 2008
201
char *stemp;
Aug 11, 2007
Aug 11, 2007
202
DFBResult ret;
Jan 4, 2009
Jan 4, 2009
204
205
SDL_DFB_CALLOC(devdata, 1, sizeof(*devdata));
Aug 11, 2007
Aug 11, 2007
206
SDL_DFB_CHECKERR(DirectFBInit(NULL, NULL));
Jan 4, 2009
Jan 4, 2009
208
209
/* avoid switching to the framebuffer when we
* are running X11 */
Jan 11, 2009
Jan 11, 2009
210
stemp = SDL_getenv(DFBENV_USE_X11_CHECK);
Jan 4, 2009
Jan 4, 2009
211
212
213
214
215
216
if (stemp)
ret = atoi(stemp);
else
ret = 1;
if (ret) {
Jan 11, 2009
Jan 11, 2009
217
if (SDL_getenv("DISPLAY"))
Jan 4, 2009
Jan 4, 2009
218
219
220
221
222
223
DirectFBSetOption("system", "x11");
else
DirectFBSetOption("disable-module", "x11input");
}
devdata->use_linux_input = 1; /* default: on */
Jan 11, 2009
Jan 11, 2009
224
stemp = SDL_getenv(DFBENV_USE_LINUX_INPUT);
Jan 4, 2009
Jan 4, 2009
225
226
227
228
229
230
231
if (stemp)
devdata->use_linux_input = atoi(stemp);
if (!devdata->use_linux_input)
DirectFBSetOption("disable-module", "linux_input");
SDL_DFB_CHECKERR(DirectFBCreate(&dfb));
Oct 3, 2003
Oct 3, 2003
232
Jan 11, 2009
Jan 11, 2009
233
DirectFB_DeviceInformation(dfb);
Aug 31, 2008
Aug 31, 2008
234
devdata->use_yuv_underlays = 0; /* default: off */
Jan 11, 2009
Jan 11, 2009
235
stemp = SDL_getenv(DFBENV_USE_YUV_UNDERLAY);
Aug 31, 2008
Aug 31, 2008
236
237
if (stemp)
devdata->use_yuv_underlays = atoi(stemp);
Jul 10, 2006
Jul 10, 2006
238
Jan 4, 2009
Jan 4, 2009
239
Aug 31, 2008
Aug 31, 2008
240
/* Create global Eventbuffer for axis events */
Jan 4, 2009
Jan 4, 2009
241
if (devdata->use_linux_input) {
Jan 11, 2009
Jan 11, 2009
242
243
244
SDL_DFB_CHECKERR(dfb->CreateInputEventBuffer(dfb, DICAPS_ALL,
DFB_TRUE,
&devdata->events));
Dec 8, 2008
Dec 8, 2008
245
} else {
Jan 11, 2009
Jan 11, 2009
246
247
248
249
SDL_DFB_CHECKERR(dfb->CreateInputEventBuffer(dfb, DICAPS_AXES
/*DICAPS_ALL */ ,
DFB_TRUE,
&devdata->events));
Dec 8, 2008
Dec 8, 2008
250
}
Oct 3, 2003
Oct 3, 2003
251
Aug 11, 2007
Aug 11, 2007
252
devdata->initialized = 1;
Jan 11, 2009
Jan 11, 2009
253
254
255
256
/* simple window manager support */
stemp = SDL_getenv(DFBENV_USE_WM);
if (stemp)
Jan 14, 2009
Jan 14, 2009
257
devdata->has_own_wm = atoi(stemp);
Jan 11, 2009
Jan 11, 2009
258
else
Jan 14, 2009
Jan 14, 2009
259
devdata->has_own_wm = 0;
Jan 11, 2009
Jan 11, 2009
260
Aug 11, 2007
Aug 11, 2007
261
262
devdata->dfb = dfb;
devdata->firstwin = NULL;
Aug 24, 2002
Aug 24, 2002
263
Aug 11, 2007
Aug 11, 2007
264
_this->driverdata = devdata;
Oct 3, 2003
Oct 3, 2003
265
Aug 31, 2008
Aug 31, 2008
266
DirectFB_InitModes(_this);
Oct 3, 2003
Oct 3, 2003
267
Aug 11, 2007
Aug 11, 2007
268
#if SDL_DIRECTFB_OPENGL
Aug 31, 2008
Aug 31, 2008
269
DirectFB_GL_Initialize(_this);
Aug 11, 2007
Aug 11, 2007
270
#endif
Aug 24, 2002
Aug 24, 2002
271
Aug 11, 2007
Aug 11, 2007
272
273
DirectFB_AddRenderDriver(_this);
DirectFB_InitMouse(_this);
Aug 26, 2008
Aug 26, 2008
274
DirectFB_InitKeyboard(_this);
Aug 31, 2008
Aug 31, 2008
275
Aug 11, 2007
Aug 11, 2007
276
return 0;
Jul 10, 2006
Jul 10, 2006
277
Aug 11, 2007
Aug 11, 2007
279
error:
Jan 4, 2009
Jan 4, 2009
280
SDL_DFB_FREE(devdata);
Aug 11, 2007
Aug 11, 2007
281
282
SDL_DFB_RELEASE(dfb);
return -1;
Aug 11, 2007
Aug 11, 2007
285
286
static void
DirectFB_VideoQuit(_THIS)
Aug 11, 2007
Aug 11, 2007
288
289
DFB_DeviceData *devdata = (DFB_DeviceData *) _this->driverdata;
Aug 31, 2008
Aug 31, 2008
290
291
292
DirectFB_QuitModes(_this);
DirectFB_QuitKeyboard(_this);
DirectFB_QuitMouse(_this);
Aug 31, 2008
Aug 31, 2008
294
SDL_DFB_RELEASE(devdata->events);
Aug 11, 2007
Aug 11, 2007
295
SDL_DFB_RELEASE(devdata->dfb);
Aug 11, 2007
Aug 11, 2007
297
#if SDL_DIRECTFB_OPENGL
Aug 31, 2008
Aug 31, 2008
298
DirectFB_GL_Shutdown(_this);
Aug 11, 2007
Aug 11, 2007
299
#endif
Aug 31, 2002
Aug 31, 2002
300
Aug 11, 2007
Aug 11, 2007
301
302
devdata->initialized = 0;
}
Jan 11, 2009
Jan 11, 2009
304
#if 0
Aug 11, 2007
Aug 11, 2007
305
306
static int
DirectFB_SetDisplayGammaRamp(_THIS, Uint16 * ramp)
Aug 11, 2007
Aug 11, 2007
308
return -1;
Jul 10, 2006
Jul 10, 2006
311
static int
Aug 11, 2007
Aug 11, 2007
312
DirectFB_GetDisplayGammaRamp(_THIS, Uint16 * ramp)
Aug 11, 2007
Aug 11, 2007
314
return -1;
Jan 11, 2009
Jan 11, 2009
316
#endif