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

Latest commit

 

History

History
184 lines (137 loc) · 5.42 KB

SDL_DirectFB_video.h

File metadata and controls

184 lines (137 loc) · 5.42 KB
 
1
2
/*
SDL - Simple DirectMedia Layer
Feb 12, 2011
Feb 12, 2011
3
Copyright (C) 1997-2011 Sam Lantinga
4
5
This library is free software; you can redistribute it and/or
Feb 1, 2006
Feb 1, 2006
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
Feb 1, 2006
Feb 1, 2006
8
version 2.1 of the License, or (at your option) any later version.
9
10
11
12
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
Feb 1, 2006
Feb 1, 2006
13
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
18
19
Sam Lantinga
Dec 14, 2001
Dec 14, 2001
20
slouken@libsdl.org
Feb 6, 2011
Feb 6, 2011
21
22
23
SDL1.3 DirectFB driver by couriersud@arcor.de
Feb 6, 2011
Feb 6, 2011
25
Feb 21, 2006
Feb 21, 2006
26
#include "SDL_config.h"
27
28
29
30
31
#ifndef _SDL_DirectFB_video_h
#define _SDL_DirectFB_video_h
#include <directfb.h>
Aug 11, 2007
Aug 11, 2007
32
33
#include <directfb_version.h>
Feb 6, 2011
Feb 6, 2011
34
35
36
#include "../SDL_sysvideo.h"
#include "SDL_scancode.h"
#include "SDL_render.h"
Aug 11, 2007
Aug 11, 2007
37
Jan 13, 2009
Jan 13, 2009
38
39
40
41
42
43
44
45
#define DFB_VERSIONNUM(X, Y, Z) \
((X)*1000 + (Y)*100 + (Z))
#define DFB_COMPILEDVERSION \
DFB_VERSIONNUM(DIRECTFB_MAJOR_VERSION, DIRECTFB_MINOR_VERSION, DIRECTFB_MICRO_VERSION)
#define DFB_VERSION_ATLEAST(X, Y, Z) \
(DFB_COMPILEDVERSION >= DFB_VERSIONNUM(X, Y, Z))
Aug 11, 2007
Aug 11, 2007
46
Jan 13, 2009
Jan 13, 2009
47
#if (DFB_VERSION_ATLEAST(1,0,0))
Mar 15, 2011
Mar 15, 2011
48
#ifdef SDL_VIDEO_OPENGL
Jan 14, 2009
Jan 14, 2009
49
#define SDL_DIRECTFB_OPENGL 1
Mar 15, 2011
Mar 15, 2011
50
#endif
Jan 13, 2009
Jan 13, 2009
51
#else
Jan 14, 2009
Jan 14, 2009
52
#error "SDL_DIRECTFB: Please compile against libdirectfb version >= 1.0.0"
Aug 11, 2007
Aug 11, 2007
53
54
#endif
Feb 6, 2011
Feb 6, 2011
55
56
57
/* Set below to 1 to compile with (old) multi mice/keyboard api. Code left in
* in case we see this again ...
*/
Feb 6, 2011
Feb 6, 2011
59
60
61
62
63
#define USE_MULTI_API (0)
/* Support for LUT8/INDEX8 pixel format.
* This is broken in DirectFB 1.4.3. It works in 1.4.0 and 1.4.5
* occurred.
Aug 31, 2008
Aug 31, 2008
64
*/
Feb 6, 2011
Feb 6, 2011
65
66
67
68
69
70
71
72
73
#if (DFB_COMPILEDVERSION == DFB_VERSIONNUM(1, 4, 3))
#define ENABLE_LUT8 (0)
#else
#define ENABLE_LUT8 (1)
#endif
#define DIRECTFB_DEBUG 1
#define LOG_CHANNEL stdout
Jan 4, 2009
Jan 4, 2009
75
76
77
78
#define DFBENV_USE_YUV_UNDERLAY "SDL_DIRECTFB_YUV_UNDERLAY" /* Default: off */
#define DFBENV_USE_YUV_DIRECT "SDL_DIRECTFB_YUV_DIRECT" /* Default: off */
#define DFBENV_USE_X11_CHECK "SDL_DIRECTFB_X11_CHECK" /* Default: on */
#define DFBENV_USE_LINUX_INPUT "SDL_DIRECTFB_LINUX_INPUT" /* Default: on */
Jan 14, 2009
Jan 14, 2009
79
#define DFBENV_USE_WM "SDL_DIRECTFB_WM" /* Default: off */
Aug 11, 2007
Aug 11, 2007
80
Aug 16, 2010
Aug 16, 2010
81
#define SDL_DFB_RELEASE(x) do { if ( (x) != NULL ) { SDL_DFB_CHECK(x->Release(x)); x = NULL; } } while (0)
Jan 13, 2009
Jan 13, 2009
82
83
#define SDL_DFB_FREE(x) do { if ( (x) != NULL ) { SDL_free(x); x = NULL; } } while (0)
#define SDL_DFB_UNLOCK(x) do { if ( (x) != NULL ) { x->Unlock(x); } } while (0)
Aug 11, 2007
Aug 11, 2007
84
85
86
#define SDL_DFB_CONTEXT "SDL_DirectFB"
Feb 6, 2011
Feb 6, 2011
87
88
89
90
91
92
93
94
95
96
97
#define SDL_DFB_ERR(x...) \
do { \
fprintf(LOG_CHANNEL, "%s: %s <%d>:\n\t", \
SDL_DFB_CONTEXT, __FILE__, __LINE__ ); \
fprintf(LOG_CHANNEL, x ); \
} while (0)
#if (DIRECTFB_DEBUG)
#define SDL_DFB_LOG(x...) \
do { \
Mar 15, 2011
Mar 15, 2011
98
fprintf(LOG_CHANNEL, "%s: ", SDL_DFB_CONTEXT); \
Feb 6, 2011
Feb 6, 2011
99
100
101
102
103
104
105
fprintf(LOG_CHANNEL, x ); \
fprintf(LOG_CHANNEL, "\n"); \
} while (0)
#define SDL_DFB_DEBUG(x...) SDL_DFB_ERR( x )
static inline DFBResult sdl_dfb_check(DFBResult ret, const char *src_file, int src_line) {
Aug 16, 2010
Aug 16, 2010
106
if (ret != DFB_OK) {
Feb 6, 2011
Feb 6, 2011
107
108
SDL_DFB_LOG("%s (%d):%s", src_file, src_line, DirectFBErrorString (ret) );
SDL_SetError("%s:%s", SDL_DFB_CONTEXT, DirectFBErrorString (ret) );
Aug 16, 2010
Aug 16, 2010
109
110
111
112
}
return ret;
}
Feb 6, 2011
Feb 6, 2011
113
114
#define SDL_DFB_CHECK(x...) do { sdl_dfb_check( x, __FILE__, __LINE__); } while (0)
#define SDL_DFB_CHECKERR(x...) do { if ( sdl_dfb_check( x, __FILE__, __LINE__) != DFB_OK ) goto error; } while (0)
Aug 16, 2010
Aug 16, 2010
115
Feb 6, 2011
Feb 6, 2011
116
#else
Aug 16, 2010
Aug 16, 2010
117
Feb 6, 2011
Feb 6, 2011
118
119
120
121
122
123
#define SDL_DFB_CHECK(x...) x
#define SDL_DFB_CHECKERR(x...) do { if (x != DFB_OK ) goto error; } while (0)
#define SDL_DFB_LOG(x...) do {} while (0)
#define SDL_DFB_DEBUG(x...) do {} while (0)
#endif
Aug 11, 2007
Aug 11, 2007
124
125
126
#define SDL_DFB_CALLOC(r, n, s) \
Feb 6, 2011
Feb 6, 2011
127
128
129
130
131
132
133
do { \
r = SDL_calloc (n, s); \
if (!(r)) { \
SDL_DFB_ERR("Out of memory"); \
SDL_OutOfMemory(); \
goto error; \
} \
Aug 11, 2007
Aug 11, 2007
134
} while (0)
Feb 6, 2011
Feb 6, 2011
136
137
#define SDL_DFB_ALLOC_CLEAR(r, s) SDL_DFB_CALLOC(r, 1, s)
138
139
/* Private display data */
Jan 11, 2009
Jan 11, 2009
140
#define SDL_DFB_DEVICEDATA(dev) DFB_DeviceData *devdata = (dev ? (DFB_DeviceData *) ((dev)->driverdata) : NULL)
Aug 11, 2007
Aug 11, 2007
141
142
143
#define DFB_MAX_SCREENS 10
Feb 6, 2011
Feb 6, 2011
144
145
146
typedef struct _DFB_KeyboardData DFB_KeyboardData;
struct _DFB_KeyboardData
{
Feb 7, 2011
Feb 7, 2011
147
const SDL_Scancode *map; /* keyboard scancode map */
Feb 6, 2011
Feb 6, 2011
148
149
150
151
152
153
int map_size; /* size of map */
int map_adjust; /* index adjust */
int is_generic; /* generic keyboard */
int id;
};
Aug 11, 2007
Aug 11, 2007
154
155
typedef struct _DFB_DeviceData DFB_DeviceData;
struct _DFB_DeviceData
Jul 10, 2006
Jul 10, 2006
157
158
int initialized;
Feb 6, 2011
Feb 6, 2011
159
160
161
162
163
164
165
166
167
168
169
170
IDirectFB *dfb;
int num_mice;
int mouse_id[0x100];
int num_keyboard;
DFB_KeyboardData keyboard[10];
SDL_Window *firstwin;
int use_yuv_underlays;
int use_yuv_direct;
int use_linux_input;
int has_own_wm;
Aug 11, 2007
Aug 11, 2007
171
Aug 16, 2010
Aug 16, 2010
172
/* window grab */
Feb 6, 2011
Feb 6, 2011
173
SDL_Window *grabbed_window;
Aug 31, 2008
Aug 31, 2008
175
176
/* global events */
IDirectFBEventBuffer *events;
Aug 11, 2007
Aug 11, 2007
177
};
Aug 31, 2002
Aug 31, 2002
178
Feb 6, 2011
Feb 6, 2011
179
180
181
182
183
Uint32 DirectFB_DFBToSDLPixelFormat(DFBSurfacePixelFormat pixelformat);
DFBSurfacePixelFormat DirectFB_SDLToDFBPixelFormat(Uint32 format);
void DirectFB_SetSupportedPixelFormats(SDL_RendererInfo *ri);
184
#endif /* _SDL_DirectFB_video_h */