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

Latest commit

 

History

History
290 lines (225 loc) · 8.19 KB

SDL_DirectFB_video.c

File metadata and controls

290 lines (225 loc) · 8.19 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
132
133
device->free = DirectFB_DeleteDevice;
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
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
184
185
static int
DirectFB_VideoInit(_THIS)
Jul 10, 2006
Jul 10, 2006
187
IDirectFB *dfb = NULL;
Jan 4, 2009
Jan 4, 2009
188
DFB_DeviceData *devdata = NULL;
Aug 31, 2008
Aug 31, 2008
189
char *stemp;
Aug 11, 2007
Aug 11, 2007
190
DFBResult ret;
Jan 4, 2009
Jan 4, 2009
192
193
SDL_DFB_CALLOC(devdata, 1, sizeof(*devdata));
Aug 11, 2007
Aug 11, 2007
194
SDL_DFB_CHECKERR(DirectFBInit(NULL, NULL));
Jan 4, 2009
Jan 4, 2009
196
197
/* avoid switching to the framebuffer when we
* are running X11 */
Jan 11, 2009
Jan 11, 2009
198
stemp = SDL_getenv(DFBENV_USE_X11_CHECK);
Jan 4, 2009
Jan 4, 2009
199
200
201
202
203
204
if (stemp)
ret = atoi(stemp);
else
ret = 1;
if (ret) {
Jan 11, 2009
Jan 11, 2009
205
if (SDL_getenv("DISPLAY"))
Jan 4, 2009
Jan 4, 2009
206
207
208
209
210
211
DirectFBSetOption("system", "x11");
else
DirectFBSetOption("disable-module", "x11input");
}
devdata->use_linux_input = 1; /* default: on */
Jan 11, 2009
Jan 11, 2009
212
stemp = SDL_getenv(DFBENV_USE_LINUX_INPUT);
Jan 4, 2009
Jan 4, 2009
213
214
215
216
217
218
219
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
220
Jan 11, 2009
Jan 11, 2009
221
DirectFB_DeviceInformation(dfb);
Aug 31, 2008
Aug 31, 2008
222
devdata->use_yuv_underlays = 0; /* default: off */
Jan 11, 2009
Jan 11, 2009
223
stemp = SDL_getenv(DFBENV_USE_YUV_UNDERLAY);
Aug 31, 2008
Aug 31, 2008
224
225
if (stemp)
devdata->use_yuv_underlays = atoi(stemp);
Jul 10, 2006
Jul 10, 2006
226
Jan 4, 2009
Jan 4, 2009
227
Aug 31, 2008
Aug 31, 2008
228
/* Create global Eventbuffer for axis events */
Jan 4, 2009
Jan 4, 2009
229
if (devdata->use_linux_input) {
Jan 11, 2009
Jan 11, 2009
230
231
232
SDL_DFB_CHECKERR(dfb->CreateInputEventBuffer(dfb, DICAPS_ALL,
DFB_TRUE,
&devdata->events));
Dec 8, 2008
Dec 8, 2008
233
} else {
Jan 11, 2009
Jan 11, 2009
234
235
236
237
SDL_DFB_CHECKERR(dfb->CreateInputEventBuffer(dfb, DICAPS_AXES
/*DICAPS_ALL */ ,
DFB_TRUE,
&devdata->events));
Dec 8, 2008
Dec 8, 2008
238
}
Oct 3, 2003
Oct 3, 2003
239
Aug 11, 2007
Aug 11, 2007
240
devdata->initialized = 1;
Jan 11, 2009
Jan 11, 2009
241
242
243
244
/* simple window manager support */
stemp = SDL_getenv(DFBENV_USE_WM);
if (stemp)
Jan 14, 2009
Jan 14, 2009
245
devdata->has_own_wm = atoi(stemp);
Jan 11, 2009
Jan 11, 2009
246
else
Jan 14, 2009
Jan 14, 2009
247
devdata->has_own_wm = 0;
Jan 11, 2009
Jan 11, 2009
248
Aug 11, 2007
Aug 11, 2007
249
250
devdata->dfb = dfb;
devdata->firstwin = NULL;
Aug 24, 2002
Aug 24, 2002
251
Aug 11, 2007
Aug 11, 2007
252
_this->driverdata = devdata;
Oct 3, 2003
Oct 3, 2003
253
Aug 31, 2008
Aug 31, 2008
254
DirectFB_InitModes(_this);
Oct 3, 2003
Oct 3, 2003
255
Aug 11, 2007
Aug 11, 2007
256
#if SDL_DIRECTFB_OPENGL
Aug 31, 2008
Aug 31, 2008
257
DirectFB_GL_Initialize(_this);
Aug 11, 2007
Aug 11, 2007
258
#endif
Aug 24, 2002
Aug 24, 2002
259
Aug 11, 2007
Aug 11, 2007
260
261
DirectFB_AddRenderDriver(_this);
DirectFB_InitMouse(_this);
Aug 26, 2008
Aug 26, 2008
262
DirectFB_InitKeyboard(_this);
Aug 31, 2008
Aug 31, 2008
263
Aug 11, 2007
Aug 11, 2007
264
return 0;
Jul 10, 2006
Jul 10, 2006
265
Aug 11, 2007
Aug 11, 2007
267
error:
Jan 4, 2009
Jan 4, 2009
268
SDL_DFB_FREE(devdata);
Aug 11, 2007
Aug 11, 2007
269
270
SDL_DFB_RELEASE(dfb);
return -1;
Aug 11, 2007
Aug 11, 2007
273
274
static void
DirectFB_VideoQuit(_THIS)
Aug 11, 2007
Aug 11, 2007
276
277
DFB_DeviceData *devdata = (DFB_DeviceData *) _this->driverdata;
Aug 31, 2008
Aug 31, 2008
278
279
280
DirectFB_QuitModes(_this);
DirectFB_QuitKeyboard(_this);
DirectFB_QuitMouse(_this);
Aug 31, 2008
Aug 31, 2008
282
SDL_DFB_RELEASE(devdata->events);
Aug 11, 2007
Aug 11, 2007
283
SDL_DFB_RELEASE(devdata->dfb);
Aug 11, 2007
Aug 11, 2007
285
#if SDL_DIRECTFB_OPENGL
Aug 31, 2008
Aug 31, 2008
286
DirectFB_GL_Shutdown(_this);
Aug 11, 2007
Aug 11, 2007
287
#endif
Aug 31, 2002
Aug 31, 2002
288
Aug 11, 2007
Aug 11, 2007
289
290
devdata->initialized = 0;
}