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

Latest commit

 

History

History
258 lines (201 loc) · 6.79 KB

SDL_DirectFB_video.c

File metadata and controls

258 lines (201 loc) · 6.79 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>
38
39
40
#include "SDL_video.h"
#include "SDL_mouse.h"
Feb 16, 2006
Feb 16, 2006
41
42
43
#include "../SDL_sysvideo.h"
#include "../SDL_pixels_c.h"
#include "../../events/SDL_events_c.h"
44
45
#include "SDL_DirectFB_video.h"
#include "SDL_DirectFB_events.h"
Aug 31, 2008
Aug 31, 2008
46
47
#include "SDL_DirectFB_render.h"
#include "SDL_DirectFB_mouse.h"
Aug 11, 2007
Aug 11, 2007
48
Jan 4, 2009
Jan 4, 2009
49
50
#include "SDL_DirectFB_dyn.h"
Aug 11, 2007
Aug 11, 2007
51
52
53
54
/* Initialization/Query functions */
static int DirectFB_VideoInit(_THIS);
static void DirectFB_VideoQuit(_THIS);
Aug 31, 2008
Aug 31, 2008
55
56
static int DirectFB_Available(void);
static SDL_VideoDevice *DirectFB_CreateDevice(int devindex);
Aug 11, 2007
Aug 11, 2007
57
58
59
60
static int DirectFB_SetDisplayGammaRamp(_THIS, Uint16 * ramp);
static int DirectFB_GetDisplayGammaRamp(_THIS, Uint16 * ramp);
Aug 31, 2008
Aug 31, 2008
61
62
63
64
VideoBootStrap DirectFB_bootstrap = {
"directfb", "DirectFB",
DirectFB_Available, DirectFB_CreateDevice
};
65
66
67
/* DirectFB driver bootstrap functions */
Jul 10, 2006
Jul 10, 2006
68
69
static int
DirectFB_Available(void)
Jan 4, 2009
Jan 4, 2009
71
72
73
if (!SDL_DirectFB_LoadLibrary())
return 0;
SDL_DirectFB_UnLoadLibrary();
Jul 10, 2006
Jul 10, 2006
74
return 1;
Jul 10, 2006
Jul 10, 2006
77
78
static void
DirectFB_DeleteDevice(SDL_VideoDevice * device)
Jan 4, 2009
Jan 4, 2009
80
81
82
SDL_DirectFB_UnLoadLibrary();
SDL_DFB_FREE(device->driverdata);
SDL_DFB_FREE(device);
Jul 10, 2006
Jul 10, 2006
85
86
static SDL_VideoDevice *
DirectFB_CreateDevice(int devindex)
Jul 10, 2006
Jul 10, 2006
88
89
SDL_VideoDevice *device;
Jan 4, 2009
Jan 4, 2009
90
91
92
if (!SDL_DirectFB_LoadLibrary())
return NULL;
Jul 10, 2006
Jul 10, 2006
93
/* Initialize all variables that we clean on shutdown */
Aug 11, 2007
Aug 11, 2007
94
95
96
SDL_DFB_CALLOC(device, 1, sizeof(SDL_VideoDevice));
/* Set the function pointers */
Jul 10, 2006
Jul 10, 2006
97
98
99
100
/* Set the function pointers */
device->VideoInit = DirectFB_VideoInit;
device->VideoQuit = DirectFB_VideoQuit;
Aug 11, 2007
Aug 11, 2007
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
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;
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
138
139
140
141
device->free = DirectFB_DeleteDevice;
return device;
Aug 11, 2007
Aug 11, 2007
142
143
144
145
error:
if (device)
free(device);
return (0);
Aug 11, 2007
Aug 11, 2007
148
149
static int
DirectFB_VideoInit(_THIS)
Jul 10, 2006
Jul 10, 2006
151
IDirectFB *dfb = NULL;
Jan 4, 2009
Jan 4, 2009
152
DFB_DeviceData *devdata = NULL;
Aug 31, 2008
Aug 31, 2008
153
char *stemp;
Aug 11, 2007
Aug 11, 2007
154
DFBResult ret;
Jan 4, 2009
Jan 4, 2009
156
157
SDL_DFB_CALLOC(devdata, 1, sizeof(*devdata));
Aug 11, 2007
Aug 11, 2007
158
SDL_DFB_CHECKERR(DirectFBInit(NULL, NULL));
Jan 4, 2009
Jan 4, 2009
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/* avoid switching to the framebuffer when we
* are running X11 */
stemp = getenv(DFBENV_USE_X11_CHECK);
if (stemp)
ret = atoi(stemp);
else
ret = 1;
if (ret) {
if (getenv("DISPLAY"))
DirectFBSetOption("system", "x11");
else
DirectFBSetOption("disable-module", "x11input");
}
devdata->use_linux_input = 1; /* default: on */
stemp = getenv(DFBENV_USE_LINUX_INPUT);
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
184
Aug 31, 2008
Aug 31, 2008
185
186
187
188
devdata->use_yuv_underlays = 0; /* default: off */
stemp = getenv(DFBENV_USE_YUV_UNDERLAY);
if (stemp)
devdata->use_yuv_underlays = atoi(stemp);
Jul 10, 2006
Jul 10, 2006
189
Jan 4, 2009
Jan 4, 2009
190
Aug 31, 2008
Aug 31, 2008
191
/* Create global Eventbuffer for axis events */
Jan 4, 2009
Jan 4, 2009
192
if (devdata->use_linux_input) {
Dec 8, 2008
Dec 8, 2008
193
194
195
196
197
198
199
200
201
SDL_DFB_CHECKERR(dfb->
CreateInputEventBuffer(dfb, DICAPS_ALL,
DFB_TRUE, &devdata->events));
} else {
SDL_DFB_CHECKERR(dfb->
CreateInputEventBuffer(dfb,
DICAPS_AXES /*DICAPS_ALL */ ,
DFB_TRUE, &devdata->events));
}
Oct 3, 2003
Oct 3, 2003
202
Aug 11, 2007
Aug 11, 2007
203
204
205
devdata->initialized = 1;
devdata->dfb = dfb;
devdata->firstwin = NULL;
Aug 24, 2002
Aug 24, 2002
206
Aug 11, 2007
Aug 11, 2007
207
_this->driverdata = devdata;
Oct 3, 2003
Oct 3, 2003
208
Aug 31, 2008
Aug 31, 2008
209
DirectFB_InitModes(_this);
Oct 3, 2003
Oct 3, 2003
210
Aug 11, 2007
Aug 11, 2007
211
#if SDL_DIRECTFB_OPENGL
Aug 31, 2008
Aug 31, 2008
212
DirectFB_GL_Initialize(_this);
Aug 11, 2007
Aug 11, 2007
213
#endif
Aug 24, 2002
Aug 24, 2002
214
Aug 11, 2007
Aug 11, 2007
215
216
DirectFB_AddRenderDriver(_this);
DirectFB_InitMouse(_this);
Aug 26, 2008
Aug 26, 2008
217
DirectFB_InitKeyboard(_this);
Aug 31, 2008
Aug 31, 2008
218
Aug 24, 2002
Aug 24, 2002
219
Aug 11, 2007
Aug 11, 2007
220
return 0;
Jul 10, 2006
Jul 10, 2006
221
Aug 11, 2007
Aug 11, 2007
223
error:
Jan 4, 2009
Jan 4, 2009
224
SDL_DFB_FREE(devdata);
Aug 11, 2007
Aug 11, 2007
225
226
SDL_DFB_RELEASE(dfb);
return -1;
Aug 11, 2007
Aug 11, 2007
229
230
static void
DirectFB_VideoQuit(_THIS)
Aug 11, 2007
Aug 11, 2007
232
233
DFB_DeviceData *devdata = (DFB_DeviceData *) _this->driverdata;
Aug 31, 2008
Aug 31, 2008
234
235
236
DirectFB_QuitModes(_this);
DirectFB_QuitKeyboard(_this);
DirectFB_QuitMouse(_this);
Aug 31, 2008
Aug 31, 2008
238
SDL_DFB_RELEASE(devdata->events);
Aug 11, 2007
Aug 11, 2007
239
SDL_DFB_RELEASE(devdata->dfb);
Aug 11, 2007
Aug 11, 2007
241
#if SDL_DIRECTFB_OPENGL
Aug 31, 2008
Aug 31, 2008
242
DirectFB_GL_Shutdown(_this);
Aug 11, 2007
Aug 11, 2007
243
#endif
Aug 31, 2002
Aug 31, 2002
244
Aug 11, 2007
Aug 11, 2007
245
246
devdata->initialized = 0;
}
Aug 11, 2007
Aug 11, 2007
248
249
static int
DirectFB_SetDisplayGammaRamp(_THIS, Uint16 * ramp)
Aug 11, 2007
Aug 11, 2007
251
return -1;
Jul 10, 2006
Jul 10, 2006
254
static int
Aug 11, 2007
Aug 11, 2007
255
DirectFB_GetDisplayGammaRamp(_THIS, Uint16 * ramp)
Aug 11, 2007
Aug 11, 2007
257
return -1;