author | Ryan C. Gordon <icculus@icculus.org> |
Wed, 14 Mar 2007 01:09:24 +0000 | |
branch | SDL-1.2 |
changeset 3923 | 0dd8bdf173e2 |
parent 3917 | 8a3a0f1179f3 |
child 4159 | a1b03ba2fcd0 |
permissions | -rw-r--r-- |
0 | 1 |
/* |
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
2 |
SDL - Simple DirectMedia Layer |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
3 |
Copyright (C) 1997-2006 Sam Lantinga |
0 | 4 |
|
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
5 |
This library is free software; you can redistribute it and/or |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
6 |
modify it under the terms of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
7 |
License as published by the Free Software Foundation; either |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
8 |
version 2.1 of the License, or (at your option) any later version. |
0 | 9 |
|
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
10 |
This library is distributed in the hope that it will be useful, |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
13 |
Lesser General Public License for more details. |
0 | 14 |
|
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
15 |
You should have received a copy of the GNU Lesser General Public |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
16 |
License along with this library; if not, write to the Free Software |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
17 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
0 | 18 |
|
1312
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
19 |
Sam Lantinga |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
20 |
slouken@libsdl.org |
c9b51268668f
Updated copyright information and removed rcs id lines (problematic in branch merges)
Sam Lantinga <slouken@libsdl.org>
parents:
1217
diff
changeset
|
21 |
*/ |
1402
d910939febfa
Use consistent identifiers for the various platforms we support.
Sam Lantinga <slouken@libsdl.org>
parents:
1373
diff
changeset
|
22 |
#include "SDL_config.h" |
0 | 23 |
|
24 |
/* Framebuffer console based SDL video driver implementation. |
|
25 |
*/ |
|
26 |
||
27 |
#include <stdio.h> |
|
28 |
#include <fcntl.h> |
|
29 |
#include <unistd.h> |
|
30 |
#include <sys/ioctl.h> |
|
31 |
#include <sys/mman.h> |
|
3923
0dd8bdf173e2
Linux fbcon: don't include asm/page.h if we know getpagesize() exists, since
Ryan C. Gordon <icculus@icculus.org>
parents:
3917
diff
changeset
|
32 |
|
0dd8bdf173e2
Linux fbcon: don't include asm/page.h if we know getpagesize() exists, since
Ryan C. Gordon <icculus@icculus.org>
parents:
3917
diff
changeset
|
33 |
#ifndef HAVE_GETPAGESIZE |
0 | 34 |
#include <asm/page.h> /* For definition of PAGE_SIZE */ |
3923
0dd8bdf173e2
Linux fbcon: don't include asm/page.h if we know getpagesize() exists, since
Ryan C. Gordon <icculus@icculus.org>
parents:
3917
diff
changeset
|
35 |
#endif |
0dd8bdf173e2
Linux fbcon: don't include asm/page.h if we know getpagesize() exists, since
Ryan C. Gordon <icculus@icculus.org>
parents:
3917
diff
changeset
|
36 |
|
1585
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
37 |
#include <linux/vt.h> |
0 | 38 |
|
39 |
#include "SDL_video.h" |
|
40 |
#include "SDL_mouse.h" |
|
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
41 |
#include "../SDL_sysvideo.h" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
42 |
#include "../SDL_pixels_c.h" |
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
43 |
#include "../../events/SDL_events_c.h" |
0 | 44 |
#include "SDL_fbvideo.h" |
45 |
#include "SDL_fbmouse_c.h" |
|
46 |
#include "SDL_fbevents_c.h" |
|
47 |
#include "SDL_fb3dfx.h" |
|
48 |
#include "SDL_fbmatrox.h" |
|
133
5d4bafca35cd
Added support for hardware accelerated NVidia driver on framebuffer console
Sam Lantinga <slouken@libsdl.org>
parents:
106
diff
changeset
|
49 |
#include "SDL_fbriva.h" |
5d4bafca35cd
Added support for hardware accelerated NVidia driver on framebuffer console
Sam Lantinga <slouken@libsdl.org>
parents:
106
diff
changeset
|
50 |
|
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
51 |
/*#define FBCON_DEBUG*/ |
0 | 52 |
|
53 |
#if defined(i386) && defined(FB_TYPE_VGA_PLANES) |
|
54 |
#define VGA16_FBCON_SUPPORT |
|
1373
04499d3e1b6b
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
1361
diff
changeset
|
55 |
#include <sys/io.h> /* For ioperm() */ |
0 | 56 |
#ifndef FB_AUX_VGA_PLANES_VGA4 |
57 |
#define FB_AUX_VGA_PLANES_VGA4 0 |
|
58 |
#endif |
|
1338
604d73db6802
Removed uses of stdlib.h and string.h
Sam Lantinga <slouken@libsdl.org>
parents:
1336
diff
changeset
|
59 |
/* |
0 | 60 |
static inline void outb (unsigned char value, unsigned short port) |
61 |
{ |
|
62 |
__asm__ __volatile__ ("outb %b0,%w1"::"a" (value), "Nd" (port)); |
|
63 |
} |
|
1338
604d73db6802
Removed uses of stdlib.h and string.h
Sam Lantinga <slouken@libsdl.org>
parents:
1336
diff
changeset
|
64 |
*/ |
0 | 65 |
#endif /* FB_TYPE_VGA_PLANES */ |
66 |
||
67 |
/* A list of video resolutions that we query for (sorted largest to smallest) */ |
|
91
e85e03f195b4
From: "Markus F.X.J. Oberhumer"
Sam Lantinga <slouken@lokigames.com>
parents:
6
diff
changeset
|
68 |
static const SDL_Rect checkres[] = { |
0 | 69 |
{ 0, 0, 1600, 1200 }, /* 16 bpp: 0x11E, or 286 */ |
70 |
{ 0, 0, 1408, 1056 }, /* 16 bpp: 0x19A, or 410 */ |
|
71 |
{ 0, 0, 1280, 1024 }, /* 16 bpp: 0x11A, or 282 */ |
|
72 |
{ 0, 0, 1152, 864 }, /* 16 bpp: 0x192, or 402 */ |
|
73 |
{ 0, 0, 1024, 768 }, /* 16 bpp: 0x117, or 279 */ |
|
74 |
{ 0, 0, 960, 720 }, /* 16 bpp: 0x18A, or 394 */ |
|
75 |
{ 0, 0, 800, 600 }, /* 16 bpp: 0x114, or 276 */ |
|
76 |
{ 0, 0, 768, 576 }, /* 16 bpp: 0x182, or 386 */ |
|
330
5fed858d551c
Date: 03 Apr 2002 15:28:09 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
77 |
{ 0, 0, 720, 576 }, /* PAL */ |
5fed858d551c
Date: 03 Apr 2002 15:28:09 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
297
diff
changeset
|
78 |
{ 0, 0, 720, 480 }, /* NTSC */ |
0 | 79 |
{ 0, 0, 640, 480 }, /* 16 bpp: 0x111, or 273 */ |
80 |
{ 0, 0, 640, 400 }, /* 8 bpp: 0x100, or 256 */ |
|
81 |
{ 0, 0, 512, 384 }, |
|
82 |
{ 0, 0, 320, 240 }, |
|
83 |
{ 0, 0, 320, 200 } |
|
84 |
}; |
|
91
e85e03f195b4
From: "Markus F.X.J. Oberhumer"
Sam Lantinga <slouken@lokigames.com>
parents:
6
diff
changeset
|
85 |
static const struct { |
0 | 86 |
int xres; |
87 |
int yres; |
|
88 |
int pixclock; |
|
89 |
int left; |
|
90 |
int right; |
|
91 |
int upper; |
|
92 |
int lower; |
|
93 |
int hslen; |
|
94 |
int vslen; |
|
95 |
int sync; |
|
96 |
int vmode; |
|
97 |
} vesa_timings[] = { |
|
98 |
#ifdef USE_VESA_TIMINGS /* Only tested on Matrox Millenium I */ |
|
99 |
{ 640, 400, 39771, 48, 16, 39, 8, 96, 2, 2, 0 }, /* 70 Hz */ |
|
100 |
{ 640, 480, 39683, 48, 16, 33, 10, 96, 2, 0, 0 }, /* 60 Hz */ |
|
101 |
{ 768, 576, 26101, 144, 16, 28, 6, 112, 4, 0, 0 }, /* 60 Hz */ |
|
102 |
{ 800, 600, 24038, 144, 24, 28, 8, 112, 6, 0, 0 }, /* 60 Hz */ |
|
103 |
{ 960, 720, 17686, 144, 24, 28, 8, 112, 4, 0, 0 }, /* 60 Hz */ |
|
104 |
{ 1024, 768, 15386, 160, 32, 30, 4, 128, 4, 0, 0 }, /* 60 Hz */ |
|
105 |
{ 1152, 864, 12286, 192, 32, 30, 4, 128, 4, 0, 0 }, /* 60 Hz */ |
|
106 |
{ 1280, 1024, 9369, 224, 32, 32, 4, 136, 4, 0, 0 }, /* 60 Hz */ |
|
107 |
{ 1408, 1056, 8214, 256, 40, 32, 5, 144, 5, 0, 0 }, /* 60 Hz */ |
|
108 |
{ 1600, 1200,/*?*/0, 272, 48, 32, 5, 152, 5, 0, 0 }, /* 60 Hz */ |
|
109 |
#else |
|
110 |
/* You can generate these timings from your XF86Config file using |
|
111 |
the 'modeline2fb' perl script included with the fbset package. |
|
112 |
These timings were generated for Matrox Millenium I, 15" monitor. |
|
113 |
*/ |
|
114 |
{ 320, 200, 79440, 16, 16, 20, 4, 48, 1, 0, 2 }, /* 70 Hz */ |
|
115 |
{ 320, 240, 63492, 16, 16, 16, 4, 48, 2, 0, 2 }, /* 72 Hz */ |
|
116 |
{ 512, 384, 49603, 48, 16, 16, 1, 64, 3, 0, 0 }, /* 78 Hz */ |
|
117 |
{ 640, 400, 31746, 96, 32, 41, 1, 64, 3, 2, 0 }, /* 85 Hz */ |
|
118 |
{ 640, 480, 31746, 120, 16, 16, 1, 64, 3, 0, 0 }, /* 75 Hz */ |
|
119 |
{ 768, 576, 26101, 144, 16, 28, 6, 112, 4, 0, 0 }, /* 60 Hz */ |
|
120 |
{ 800, 600, 20000, 64, 56, 23, 37, 120, 6, 3, 0 }, /* 72 Hz */ |
|
121 |
{ 960, 720, 17686, 144, 24, 28, 8, 112, 4, 0, 0 }, /* 60 Hz */ |
|
122 |
{ 1024, 768, 13333, 144, 24, 29, 3, 136, 6, 0, 0 }, /* 70 Hz */ |
|
123 |
{ 1152, 864, 12286, 192, 32, 30, 4, 128, 4, 0, 0 }, /* 60 Hz */ |
|
124 |
{ 1280, 1024, 9369, 224, 32, 32, 4, 136, 4, 0, 0 }, /* 60 Hz */ |
|
125 |
{ 1408, 1056, 8214, 256, 40, 32, 5, 144, 5, 0, 0 }, /* 60 Hz */ |
|
126 |
{ 1600, 1200,/*?*/0, 272, 48, 32, 5, 152, 5, 0, 0 }, /* 60 Hz */ |
|
127 |
#endif |
|
128 |
}; |
|
129 |
||
130 |
/* Initialization/Query functions */ |
|
131 |
static int FB_VideoInit(_THIS, SDL_PixelFormat *vformat); |
|
132 |
static SDL_Rect **FB_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags); |
|
133 |
static SDL_Surface *FB_SetVideoMode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags); |
|
134 |
#ifdef VGA16_FBCON_SUPPORT |
|
135 |
static SDL_Surface *FB_SetVGA16Mode(_THIS, SDL_Surface *current, int width, int height, int bpp, Uint32 flags); |
|
136 |
#endif |
|
137 |
static int FB_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors); |
|
138 |
static void FB_VideoQuit(_THIS); |
|
139 |
||
140 |
/* Hardware surface functions */ |
|
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
141 |
static int FB_InitHWSurfaces(_THIS, SDL_Surface *screen, char *base, int size); |
0 | 142 |
static void FB_FreeHWSurfaces(_THIS); |
143 |
static int FB_AllocHWSurface(_THIS, SDL_Surface *surface); |
|
144 |
static int FB_LockHWSurface(_THIS, SDL_Surface *surface); |
|
145 |
static void FB_UnlockHWSurface(_THIS, SDL_Surface *surface); |
|
146 |
static void FB_FreeHWSurface(_THIS, SDL_Surface *surface); |
|
147 |
static void FB_WaitVBL(_THIS); |
|
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
148 |
static void FB_WaitIdle(_THIS); |
0 | 149 |
static int FB_FlipHWSurface(_THIS, SDL_Surface *surface); |
150 |
||
151 |
/* Internal palette functions */ |
|
152 |
static void FB_SavePalette(_THIS, struct fb_fix_screeninfo *finfo, |
|
153 |
struct fb_var_screeninfo *vinfo); |
|
154 |
static void FB_RestorePalette(_THIS); |
|
155 |
||
3917
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
156 |
static int SDL_getpagesize(void) |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
157 |
{ |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
158 |
#ifdef HAVE_GETPAGESIZE |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
159 |
return getpagesize(); |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
160 |
#elif defined(PAGE_SIZE) |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
161 |
return PAGE_SIZE; |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
162 |
#else |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
163 |
#error Can not determine system page size. |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
164 |
return 4096; /* this is what it USED to be in Linux... */ |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
165 |
#endif |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
166 |
} |
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
167 |
|
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
168 |
|
1798
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
169 |
/* Small wrapper for mmap() so we can play nicely with no-mmu hosts |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
170 |
* (non-mmu hosts disallow the MAP_SHARED flag) */ |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
171 |
|
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
172 |
static void *do_mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset) |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
173 |
{ |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
174 |
void *ret; |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
175 |
ret = mmap(start, length, prot, flags, fd, offset); |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
176 |
if ( ret == (char *)-1 && (flags & MAP_SHARED) ) { |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
177 |
ret = mmap(start, length, prot, |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
178 |
(flags & ~MAP_SHARED) | MAP_PRIVATE, fd, offset); |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
179 |
} |
1837
6987e947c77a
Date: Mon, 15 May 2006 17:18:34 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
1798
diff
changeset
|
180 |
return ret; |
1798
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
181 |
} |
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
182 |
|
0 | 183 |
/* FB driver bootstrap functions */ |
184 |
||
185 |
static int FB_Available(void) |
|
186 |
{ |
|
1837
6987e947c77a
Date: Mon, 15 May 2006 17:18:34 +0300
Sam Lantinga <slouken@libsdl.org>
parents:
1798
diff
changeset
|
187 |
int console = -1; |
1585
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
188 |
/* Added check for /fb/0 (devfs) */ |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
189 |
/* but - use environment variable first... if it fails, still check defaults */ |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
190 |
int idx = 0; |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
191 |
const char *SDL_fbdevs[4] = { NULL, "/dev/fb0", "/dev/fb/0", NULL }; |
0 | 192 |
|
1585
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
193 |
SDL_fbdevs[0] = SDL_getenv("SDL_FBDEV"); |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
194 |
if( !SDL_fbdevs[0] ) |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
195 |
idx++; |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
196 |
for( ; SDL_fbdevs[idx]; idx++ ) |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
197 |
{ |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
198 |
console = open(SDL_fbdevs[idx], O_RDWR, 0); |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
199 |
if ( console >= 0 ) { |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
200 |
close(console); |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
201 |
break; |
980d2a0dc2a3
Date: Tue, 4 Mar 2003 15:05:31 -0800
Sam Lantinga <slouken@libsdl.org>
parents:
1545
diff
changeset
|
202 |
} |
0 | 203 |
} |
204 |
return(console >= 0); |
|
205 |
} |
|
206 |
||
207 |
static void FB_DeleteDevice(SDL_VideoDevice *device) |
|
208 |
{ |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
209 |
SDL_free(device->hidden); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
210 |
SDL_free(device); |
0 | 211 |
} |
212 |
||
213 |
static SDL_VideoDevice *FB_CreateDevice(int devindex) |
|
214 |
{ |
|
215 |
SDL_VideoDevice *this; |
|
216 |
||
217 |
/* Initialize all variables that we clean on shutdown */ |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
218 |
this = (SDL_VideoDevice *)SDL_malloc(sizeof(SDL_VideoDevice)); |
0 | 219 |
if ( this ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
220 |
SDL_memset(this, 0, (sizeof *this)); |
0 | 221 |
this->hidden = (struct SDL_PrivateVideoData *) |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
222 |
SDL_malloc((sizeof *this->hidden)); |
0 | 223 |
} |
224 |
if ( (this == NULL) || (this->hidden == NULL) ) { |
|
225 |
SDL_OutOfMemory(); |
|
226 |
if ( this ) { |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
227 |
SDL_free(this); |
0 | 228 |
} |
229 |
return(0); |
|
230 |
} |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
231 |
SDL_memset(this->hidden, 0, (sizeof *this->hidden)); |
0 | 232 |
wait_vbl = FB_WaitVBL; |
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
233 |
wait_idle = FB_WaitIdle; |
0 | 234 |
mouse_fd = -1; |
235 |
keyboard_fd = -1; |
|
236 |
||
237 |
/* Set the function pointers */ |
|
238 |
this->VideoInit = FB_VideoInit; |
|
239 |
this->ListModes = FB_ListModes; |
|
240 |
this->SetVideoMode = FB_SetVideoMode; |
|
241 |
this->SetColors = FB_SetColors; |
|
242 |
this->UpdateRects = NULL; |
|
243 |
this->VideoQuit = FB_VideoQuit; |
|
244 |
this->AllocHWSurface = FB_AllocHWSurface; |
|
245 |
this->CheckHWBlit = NULL; |
|
246 |
this->FillHWRect = NULL; |
|
247 |
this->SetHWColorKey = NULL; |
|
248 |
this->SetHWAlpha = NULL; |
|
249 |
this->LockHWSurface = FB_LockHWSurface; |
|
250 |
this->UnlockHWSurface = FB_UnlockHWSurface; |
|
251 |
this->FlipHWSurface = FB_FlipHWSurface; |
|
252 |
this->FreeHWSurface = FB_FreeHWSurface; |
|
253 |
this->SetCaption = NULL; |
|
254 |
this->SetIcon = NULL; |
|
255 |
this->IconifyWindow = NULL; |
|
256 |
this->GrabInput = NULL; |
|
257 |
this->GetWMInfo = NULL; |
|
258 |
this->InitOSKeymap = FB_InitOSKeymap; |
|
259 |
this->PumpEvents = FB_PumpEvents; |
|
260 |
||
261 |
this->free = FB_DeleteDevice; |
|
262 |
||
263 |
return this; |
|
264 |
} |
|
265 |
||
266 |
VideoBootStrap FBCON_bootstrap = { |
|
267 |
"fbcon", "Linux Framebuffer Console", |
|
268 |
FB_Available, FB_CreateDevice |
|
269 |
}; |
|
270 |
||
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
271 |
#define FB_MODES_DB "/etc/fb.modes" |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
272 |
|
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
273 |
static int read_fbmodes_line(FILE*f, char* line, int length) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
274 |
{ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
275 |
int blank; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
276 |
char* c; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
277 |
int i; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
278 |
|
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
279 |
blank=0; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
280 |
/* find a relevant line */ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
281 |
do |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
282 |
{ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
283 |
if (fgets(line,length,f)<=0) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
284 |
return 0; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
285 |
c=line; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
286 |
while(((*c=='\t')||(*c==' '))&&(*c!=0)) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
287 |
c++; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
288 |
|
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
289 |
if ((*c=='\n')||(*c=='#')||(*c==0)) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
290 |
blank=1; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
291 |
else |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
292 |
blank=0; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
293 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
294 |
while(blank); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
295 |
/* remove whitespace at the begining of the string */ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
296 |
i=0; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
297 |
do |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
298 |
{ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
299 |
line[i]=c[i]; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
300 |
i++; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
301 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
302 |
while(c[i]!=0); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
303 |
return 1; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
304 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
305 |
|
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
306 |
static int read_fbmodes_mode(FILE *f, struct fb_var_screeninfo *vinfo) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
307 |
{ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
308 |
char line[1024]; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
309 |
char option[256]; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
310 |
|
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
311 |
/* Find a "geometry" */ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
312 |
do { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
313 |
if (read_fbmodes_line(f, line, sizeof(line))==0) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
314 |
return 0; |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
315 |
if (SDL_strncmp(line,"geometry",8)==0) |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
316 |
break; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
317 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
318 |
while(1); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
319 |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
320 |
SDL_sscanf(line, "geometry %d %d %d %d %d", &vinfo->xres, &vinfo->yres, |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
321 |
&vinfo->xres_virtual, &vinfo->yres_virtual, &vinfo->bits_per_pixel); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
322 |
if (read_fbmodes_line(f, line, sizeof(line))==0) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
323 |
return 0; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
324 |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
325 |
SDL_sscanf(line, "timings %d %d %d %d %d %d %d", &vinfo->pixclock, |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
326 |
&vinfo->left_margin, &vinfo->right_margin, &vinfo->upper_margin, |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
327 |
&vinfo->lower_margin, &vinfo->hsync_len, &vinfo->vsync_len); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
328 |
|
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
329 |
vinfo->sync=0; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
330 |
vinfo->vmode=FB_VMODE_NONINTERLACED; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
331 |
|
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
332 |
/* Parse misc options */ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
333 |
do { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
334 |
if (read_fbmodes_line(f, line, sizeof(line))==0) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
335 |
return 0; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
336 |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
337 |
if (SDL_strncmp(line,"hsync",5)==0) { |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
338 |
SDL_sscanf(line,"hsync %s",option); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
339 |
if (SDL_strncmp(option,"high",4)==0) |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
340 |
vinfo->sync |= FB_SYNC_HOR_HIGH_ACT; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
341 |
} |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
342 |
else if (SDL_strncmp(line,"vsync",5)==0) { |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
343 |
SDL_sscanf(line,"vsync %s",option); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
344 |
if (SDL_strncmp(option,"high",4)==0) |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
345 |
vinfo->sync |= FB_SYNC_VERT_HIGH_ACT; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
346 |
} |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
347 |
else if (SDL_strncmp(line,"csync",5)==0) { |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
348 |
SDL_sscanf(line,"csync %s",option); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
349 |
if (SDL_strncmp(option,"high",4)==0) |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
350 |
vinfo->sync |= FB_SYNC_COMP_HIGH_ACT; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
351 |
} |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
352 |
else if (SDL_strncmp(line,"extsync",5)==0) { |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
353 |
SDL_sscanf(line,"extsync %s",option); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
354 |
if (SDL_strncmp(option,"true",4)==0) |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
355 |
vinfo->sync |= FB_SYNC_EXT; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
356 |
} |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
357 |
else if (SDL_strncmp(line,"laced",5)==0) { |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
358 |
SDL_sscanf(line,"laced %s",option); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
359 |
if (SDL_strncmp(option,"true",4)==0) |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
360 |
vinfo->vmode |= FB_VMODE_INTERLACED; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
361 |
} |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
362 |
else if (SDL_strncmp(line,"double",6)==0) { |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
363 |
SDL_sscanf(line,"double %s",option); |
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
364 |
if (SDL_strncmp(option,"true",4)==0) |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
365 |
vinfo->vmode |= FB_VMODE_DOUBLE; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
366 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
367 |
} |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
368 |
while(SDL_strncmp(line,"endmode",7)!=0); |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
369 |
|
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
370 |
return 1; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
371 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
372 |
|
0 | 373 |
static int FB_CheckMode(_THIS, struct fb_var_screeninfo *vinfo, |
374 |
int index, unsigned int *w, unsigned int *h) |
|
375 |
{ |
|
376 |
int mode_okay; |
|
377 |
||
378 |
mode_okay = 0; |
|
379 |
vinfo->bits_per_pixel = (index+1)*8; |
|
380 |
vinfo->xres = *w; |
|
381 |
vinfo->xres_virtual = *w; |
|
382 |
vinfo->yres = *h; |
|
383 |
vinfo->yres_virtual = *h; |
|
384 |
vinfo->activate = FB_ACTIVATE_TEST; |
|
385 |
if ( ioctl(console_fd, FBIOPUT_VSCREENINFO, vinfo) == 0 ) { |
|
386 |
#ifdef FBCON_DEBUG |
|
387 |
fprintf(stderr, "Checked mode %dx%d at %d bpp, got mode %dx%d at %d bpp\n", *w, *h, (index+1)*8, vinfo->xres, vinfo->yres, vinfo->bits_per_pixel); |
|
388 |
#endif |
|
389 |
if ( (((vinfo->bits_per_pixel+7)/8)-1) == index ) { |
|
390 |
*w = vinfo->xres; |
|
391 |
*h = vinfo->yres; |
|
392 |
mode_okay = 1; |
|
393 |
} |
|
394 |
} |
|
395 |
return mode_okay; |
|
396 |
} |
|
397 |
||
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
398 |
static int FB_AddMode(_THIS, int index, unsigned int w, unsigned int h, int check_timings) |
0 | 399 |
{ |
400 |
SDL_Rect *mode; |
|
401 |
int i; |
|
402 |
int next_mode; |
|
403 |
||
404 |
/* Check to see if we already have this mode */ |
|
405 |
if ( SDL_nummodes[index] > 0 ) { |
|
406 |
mode = SDL_modelist[index][SDL_nummodes[index]-1]; |
|
407 |
if ( (mode->w == w) && (mode->h == h) ) { |
|
408 |
#ifdef FBCON_DEBUG |
|
409 |
fprintf(stderr, "We already have mode %dx%d at %d bytes per pixel\n", w, h, index+1); |
|
410 |
#endif |
|
411 |
return(0); |
|
412 |
} |
|
413 |
} |
|
414 |
||
415 |
/* Only allow a mode if we have a valid timing for it */ |
|
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
416 |
if ( check_timings ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
417 |
int found_timing = 0; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
418 |
for ( i=0; i<(sizeof(vesa_timings)/sizeof(vesa_timings[0])); ++i ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
419 |
if ( (w == vesa_timings[i].xres) && |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
420 |
(h == vesa_timings[i].yres) && vesa_timings[i].pixclock ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
421 |
found_timing = 1; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
422 |
break; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
423 |
} |
0 | 424 |
} |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
425 |
if ( !found_timing ) { |
0 | 426 |
#ifdef FBCON_DEBUG |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
427 |
fprintf(stderr, "No valid timing line for mode %dx%d\n", w, h); |
0 | 428 |
#endif |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
429 |
return(0); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
430 |
} |
0 | 431 |
} |
432 |
||
433 |
/* Set up the new video mode rectangle */ |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
434 |
mode = (SDL_Rect *)SDL_malloc(sizeof *mode); |
0 | 435 |
if ( mode == NULL ) { |
436 |
SDL_OutOfMemory(); |
|
437 |
return(-1); |
|
438 |
} |
|
439 |
mode->x = 0; |
|
440 |
mode->y = 0; |
|
441 |
mode->w = w; |
|
442 |
mode->h = h; |
|
443 |
#ifdef FBCON_DEBUG |
|
444 |
fprintf(stderr, "Adding mode %dx%d at %d bytes per pixel\n", w, h, index+1); |
|
445 |
#endif |
|
446 |
||
447 |
/* Allocate the new list of modes, and fill in the new mode */ |
|
448 |
next_mode = SDL_nummodes[index]; |
|
449 |
SDL_modelist[index] = (SDL_Rect **) |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
450 |
SDL_realloc(SDL_modelist[index], (1+next_mode+1)*sizeof(SDL_Rect *)); |
0 | 451 |
if ( SDL_modelist[index] == NULL ) { |
452 |
SDL_OutOfMemory(); |
|
453 |
SDL_nummodes[index] = 0; |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
454 |
SDL_free(mode); |
0 | 455 |
return(-1); |
456 |
} |
|
457 |
SDL_modelist[index][next_mode] = mode; |
|
458 |
SDL_modelist[index][next_mode+1] = NULL; |
|
459 |
SDL_nummodes[index]++; |
|
460 |
||
461 |
return(0); |
|
462 |
} |
|
463 |
||
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
464 |
static int cmpmodes(const void *va, const void *vb) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
465 |
{ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
466 |
const SDL_Rect *a = *(const SDL_Rect**)va; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
467 |
const SDL_Rect *b = *(const SDL_Rect**)vb; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
468 |
if ( a->h == b->h ) |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
469 |
return b->w - a->w; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
470 |
else |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
471 |
return b->h - a->h; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
472 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
473 |
|
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
474 |
static void FB_SortModes(_THIS) |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
475 |
{ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
476 |
int i; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
477 |
for ( i=0; i<NUM_MODELISTS; ++i ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
478 |
if ( SDL_nummodes[i] > 0 ) { |
1338
604d73db6802
Removed uses of stdlib.h and string.h
Sam Lantinga <slouken@libsdl.org>
parents:
1336
diff
changeset
|
479 |
SDL_qsort(SDL_modelist[i], SDL_nummodes[i], sizeof *SDL_modelist[i], cmpmodes); |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
480 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
481 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
482 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
483 |
|
0 | 484 |
static int FB_VideoInit(_THIS, SDL_PixelFormat *vformat) |
485 |
{ |
|
3917
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
486 |
const int pagesize = SDL_getpagesize(); |
0 | 487 |
struct fb_fix_screeninfo finfo; |
488 |
struct fb_var_screeninfo vinfo; |
|
489 |
int i, j; |
|
490 |
int current_index; |
|
491 |
unsigned int current_w; |
|
492 |
unsigned int current_h; |
|
493 |
const char *SDL_fbdev; |
|
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
494 |
FILE *modesdb; |
0 | 495 |
|
496 |
/* Initialize the library */ |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
497 |
SDL_fbdev = SDL_getenv("SDL_FBDEV"); |
0 | 498 |
if ( SDL_fbdev == NULL ) { |
499 |
SDL_fbdev = "/dev/fb0"; |
|
500 |
} |
|
501 |
console_fd = open(SDL_fbdev, O_RDWR, 0); |
|
502 |
if ( console_fd < 0 ) { |
|
503 |
SDL_SetError("Unable to open %s", SDL_fbdev); |
|
504 |
return(-1); |
|
505 |
} |
|
506 |
||
1361
19418e4422cb
New configure-based build system. Still work in progress, but much improved
Sam Lantinga <slouken@libsdl.org>
parents:
1358
diff
changeset
|
507 |
#if !SDL_THREADS_DISABLED |
0 | 508 |
/* Create the hardware surface lock mutex */ |
509 |
hw_lock = SDL_CreateMutex(); |
|
510 |
if ( hw_lock == NULL ) { |
|
511 |
SDL_SetError("Unable to create lock mutex"); |
|
512 |
FB_VideoQuit(this); |
|
513 |
return(-1); |
|
514 |
} |
|
515 |
#endif |
|
516 |
||
517 |
/* Get the type of video hardware */ |
|
518 |
if ( ioctl(console_fd, FBIOGET_FSCREENINFO, &finfo) < 0 ) { |
|
519 |
SDL_SetError("Couldn't get console hardware info"); |
|
520 |
FB_VideoQuit(this); |
|
521 |
return(-1); |
|
522 |
} |
|
523 |
switch (finfo.type) { |
|
524 |
case FB_TYPE_PACKED_PIXELS: |
|
525 |
/* Supported, no worries.. */ |
|
526 |
break; |
|
527 |
#ifdef VGA16_FBCON_SUPPORT |
|
528 |
case FB_TYPE_VGA_PLANES: |
|
529 |
/* VGA16 is supported, but that's it */ |
|
530 |
if ( finfo.type_aux == FB_AUX_VGA_PLANES_VGA4 ) { |
|
531 |
if ( ioperm(0x3b4, 0x3df - 0x3b4 + 1, 1) < 0 ) { |
|
532 |
SDL_SetError("No I/O port permissions"); |
|
533 |
FB_VideoQuit(this); |
|
534 |
return(-1); |
|
535 |
} |
|
536 |
this->SetVideoMode = FB_SetVGA16Mode; |
|
537 |
break; |
|
538 |
} |
|
539 |
/* Fall through to unsupported case */ |
|
540 |
#endif /* VGA16_FBCON_SUPPORT */ |
|
541 |
default: |
|
542 |
SDL_SetError("Unsupported console hardware"); |
|
543 |
FB_VideoQuit(this); |
|
544 |
return(-1); |
|
545 |
} |
|
546 |
switch (finfo.visual) { |
|
547 |
case FB_VISUAL_TRUECOLOR: |
|
548 |
case FB_VISUAL_PSEUDOCOLOR: |
|
549 |
case FB_VISUAL_STATIC_PSEUDOCOLOR: |
|
550 |
case FB_VISUAL_DIRECTCOLOR: |
|
551 |
break; |
|
552 |
default: |
|
553 |
SDL_SetError("Unsupported console hardware"); |
|
554 |
FB_VideoQuit(this); |
|
555 |
return(-1); |
|
556 |
} |
|
557 |
||
558 |
/* Check if the user wants to disable hardware acceleration */ |
|
559 |
{ const char *fb_accel; |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
560 |
fb_accel = SDL_getenv("SDL_FBACCEL"); |
0 | 561 |
if ( fb_accel ) { |
1341
d02b552e5304
Configure dynamically generates SDL_config.h
Sam Lantinga <slouken@libsdl.org>
parents:
1338
diff
changeset
|
562 |
finfo.accel = SDL_atoi(fb_accel); |
0 | 563 |
} |
564 |
} |
|
565 |
||
566 |
/* Memory map the device, compensating for buggy PPC mmap() */ |
|
567 |
mapped_offset = (((long)finfo.smem_start) - |
|
3917
8a3a0f1179f3
Patched fbcon to compile on newer Linux kernels that don't #define PAGE_SIZE,
Ryan C. Gordon <icculus@icculus.org>
parents:
1837
diff
changeset
|
568 |
(((long)finfo.smem_start)&~(pagesize-1))); |
0 | 569 |
mapped_memlen = finfo.smem_len+mapped_offset; |
1798
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
570 |
mapped_mem = do_mmap(NULL, mapped_memlen, |
0 | 571 |
PROT_READ|PROT_WRITE, MAP_SHARED, console_fd, 0); |
572 |
if ( mapped_mem == (char *)-1 ) { |
|
573 |
SDL_SetError("Unable to memory map the video hardware"); |
|
574 |
mapped_mem = NULL; |
|
575 |
FB_VideoQuit(this); |
|
576 |
return(-1); |
|
577 |
} |
|
578 |
||
579 |
/* Determine the current screen depth */ |
|
580 |
if ( ioctl(console_fd, FBIOGET_VSCREENINFO, &vinfo) < 0 ) { |
|
581 |
SDL_SetError("Couldn't get console pixel format"); |
|
582 |
FB_VideoQuit(this); |
|
583 |
return(-1); |
|
584 |
} |
|
585 |
vformat->BitsPerPixel = vinfo.bits_per_pixel; |
|
586 |
if ( vformat->BitsPerPixel < 8 ) { |
|
587 |
/* Assuming VGA16, we handle this via a shadow framebuffer */ |
|
588 |
vformat->BitsPerPixel = 8; |
|
589 |
} |
|
590 |
for ( i=0; i<vinfo.red.length; ++i ) { |
|
591 |
vformat->Rmask <<= 1; |
|
592 |
vformat->Rmask |= (0x00000001<<vinfo.red.offset); |
|
593 |
} |
|
594 |
for ( i=0; i<vinfo.green.length; ++i ) { |
|
595 |
vformat->Gmask <<= 1; |
|
596 |
vformat->Gmask |= (0x00000001<<vinfo.green.offset); |
|
597 |
} |
|
598 |
for ( i=0; i<vinfo.blue.length; ++i ) { |
|
599 |
vformat->Bmask <<= 1; |
|
600 |
vformat->Bmask |= (0x00000001<<vinfo.blue.offset); |
|
601 |
} |
|
602 |
saved_vinfo = vinfo; |
|
603 |
||
604 |
/* Save hardware palette, if needed */ |
|
605 |
FB_SavePalette(this, &finfo, &vinfo); |
|
606 |
||
607 |
/* If the I/O registers are available, memory map them so we |
|
608 |
can take advantage of any supported hardware acceleration. |
|
609 |
*/ |
|
610 |
vinfo.accel_flags = 0; /* Temporarily reserve registers */ |
|
611 |
ioctl(console_fd, FBIOPUT_VSCREENINFO, &vinfo); |
|
612 |
if ( finfo.accel && finfo.mmio_len ) { |
|
613 |
mapped_iolen = finfo.mmio_len; |
|
1798
49b4b8413734
Date: Tue, 9 May 2006 23:01:49 -0400
Sam Lantinga <slouken@libsdl.org>
parents:
1780
diff
changeset
|
614 |
mapped_io = do_mmap(NULL, mapped_iolen, PROT_READ|PROT_WRITE, |
0 | 615 |
MAP_SHARED, console_fd, mapped_memlen); |
616 |
if ( mapped_io == (char *)-1 ) { |
|
617 |
/* Hmm, failed to memory map I/O registers */ |
|
618 |
mapped_io = NULL; |
|
619 |
} |
|
620 |
} |
|
621 |
||
622 |
/* Query for the list of available video modes */ |
|
623 |
current_w = vinfo.xres; |
|
624 |
current_h = vinfo.yres; |
|
625 |
current_index = ((vinfo.bits_per_pixel+7)/8)-1; |
|
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
626 |
modesdb = fopen(FB_MODES_DB, "r"); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
627 |
for ( i=0; i<NUM_MODELISTS; ++i ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
628 |
SDL_nummodes[i] = 0; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
629 |
SDL_modelist[i] = NULL; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
630 |
} |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
631 |
if ( SDL_getenv("SDL_FB_BROKEN_MODES") != NULL ) { |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
632 |
FB_AddMode(this, current_index, current_w, current_h, 0); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
633 |
} else if(modesdb) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
634 |
while ( read_fbmodes_mode(modesdb, &vinfo) ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
635 |
for ( i=0; i<NUM_MODELISTS; ++i ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
636 |
unsigned int w, h; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
637 |
|
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
638 |
/* See if we are querying for the current mode */ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
639 |
w = vinfo.xres; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
640 |
h = vinfo.yres; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
641 |
if ( i == current_index ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
642 |
if ( (current_w > w) || (current_h > h) ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
643 |
/* Only check once */ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
644 |
FB_AddMode(this, i, current_w, current_h, 0); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
645 |
current_index = -1; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
646 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
647 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
648 |
if ( FB_CheckMode(this, &vinfo, i, &w, &h) ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
649 |
FB_AddMode(this, i, w, h, 0); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
650 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
651 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
652 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
653 |
fclose(modesdb); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
654 |
FB_SortModes(this); |
941
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
655 |
} else { |
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
656 |
for ( i=0; i<NUM_MODELISTS; ++i ) { |
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
657 |
for ( j=0; j<(sizeof(checkres)/sizeof(checkres[0])); ++j ) { |
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
658 |
unsigned int w, h; |
0 | 659 |
|
941
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
660 |
/* See if we are querying for the current mode */ |
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
661 |
w = checkres[j].w; |
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
662 |
h = checkres[j].h; |
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
663 |
if ( i == current_index ) { |
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
664 |
if ( (current_w > w) || (current_h > h) ) { |
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
665 |
/* Only check once */ |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
666 |
FB_AddMode(this, i, current_w, current_h, 0); |
941
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
667 |
current_index = -1; |
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
668 |
} |
0 | 669 |
} |
941
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
670 |
if ( FB_CheckMode(this, &vinfo, i, &w, &h) ) { |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
671 |
FB_AddMode(this, i, w, h, 1); |
941
5095c4a264aa
Date: Mon, 12 Jul 2004 14:17:47 -0500
Sam Lantinga <slouken@libsdl.org>
parents:
769
diff
changeset
|
672 |
} |
0 | 673 |
} |
674 |
} |
|
675 |
} |
|
676 |
||
677 |
/* Fill in our hardware acceleration capabilities */ |
|
1545
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
678 |
this->info.current_w = current_w; |
8d9bb0cf2c2a
Added current_w and current_h to the SDL_VideoInfo structure, which is set to the desktop resolution during video intialization, and then set to the current resolution when a video mode is set.
Sam Lantinga <slouken@libsdl.org>
parents:
1402
diff
changeset
|
679 |
this->info.current_h = current_h; |
0 | 680 |
this->info.wm_available = 0; |
681 |
this->info.hw_available = 1; |
|
682 |
this->info.video_mem = finfo.smem_len/1024; |
|
683 |
if ( mapped_io ) { |
|
684 |
switch (finfo.accel) { |
|
685 |
case FB_ACCEL_MATROX_MGA2064W: |
|
686 |
case FB_ACCEL_MATROX_MGA1064SG: |
|
687 |
case FB_ACCEL_MATROX_MGA2164W: |
|
688 |
case FB_ACCEL_MATROX_MGA2164W_AGP: |
|
689 |
case FB_ACCEL_MATROX_MGAG100: |
|
690 |
/*case FB_ACCEL_MATROX_MGAG200: G200 acceleration broken! */ |
|
691 |
case FB_ACCEL_MATROX_MGAG400: |
|
692 |
#ifdef FBACCEL_DEBUG |
|
693 |
printf("Matrox hardware accelerator!\n"); |
|
694 |
#endif |
|
695 |
FB_MatroxAccel(this, finfo.accel); |
|
696 |
break; |
|
697 |
case FB_ACCEL_3DFX_BANSHEE: |
|
698 |
#ifdef FBACCEL_DEBUG |
|
699 |
printf("3DFX hardware accelerator!\n"); |
|
700 |
#endif |
|
701 |
FB_3DfxAccel(this, finfo.accel); |
|
702 |
break; |
|
133
5d4bafca35cd
Added support for hardware accelerated NVidia driver on framebuffer console
Sam Lantinga <slouken@libsdl.org>
parents:
106
diff
changeset
|
703 |
case FB_ACCEL_NV3: |
5d4bafca35cd
Added support for hardware accelerated NVidia driver on framebuffer console
Sam Lantinga <slouken@libsdl.org>
parents:
106
diff
changeset
|
704 |
case FB_ACCEL_NV4: |
5d4bafca35cd
Added support for hardware accelerated NVidia driver on framebuffer console
Sam Lantinga <slouken@libsdl.org>
parents:
106
diff
changeset
|
705 |
#ifdef FBACCEL_DEBUG |
5d4bafca35cd
Added support for hardware accelerated NVidia driver on framebuffer console
Sam Lantinga <slouken@libsdl.org>
parents:
106
diff
changeset
|
706 |
printf("NVidia hardware accelerator!\n"); |
5d4bafca35cd
Added support for hardware accelerated NVidia driver on framebuffer console
Sam Lantinga <slouken@libsdl.org>
parents:
106
diff
changeset
|
707 |
#endif |
5d4bafca35cd
Added support for hardware accelerated NVidia driver on framebuffer console
Sam Lantinga <slouken@libsdl.org>
parents:
106
diff
changeset
|
708 |
FB_RivaAccel(this, finfo.accel); |
5d4bafca35cd
Added support for hardware accelerated NVidia driver on framebuffer console
Sam Lantinga <slouken@libsdl.org>
parents:
106
diff
changeset
|
709 |
break; |
0 | 710 |
default: |
711 |
#ifdef FBACCEL_DEBUG |
|
712 |
printf("Unknown hardware accelerator.\n"); |
|
713 |
#endif |
|
714 |
break; |
|
715 |
} |
|
716 |
} |
|
717 |
||
718 |
/* Enable mouse and keyboard support */ |
|
719 |
if ( FB_OpenKeyboard(this) < 0 ) { |
|
720 |
FB_VideoQuit(this); |
|
721 |
return(-1); |
|
722 |
} |
|
723 |
if ( FB_OpenMouse(this) < 0 ) { |
|
724 |
const char *sdl_nomouse; |
|
725 |
||
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
726 |
sdl_nomouse = SDL_getenv("SDL_NOMOUSE"); |
0 | 727 |
if ( ! sdl_nomouse ) { |
728 |
SDL_SetError("Unable to open mouse"); |
|
729 |
FB_VideoQuit(this); |
|
730 |
return(-1); |
|
731 |
} |
|
732 |
} |
|
733 |
||
734 |
/* We're done! */ |
|
735 |
return(0); |
|
736 |
} |
|
737 |
||
738 |
static SDL_Rect **FB_ListModes(_THIS, SDL_PixelFormat *format, Uint32 flags) |
|
739 |
{ |
|
740 |
return(SDL_modelist[((format->BitsPerPixel+7)/8)-1]); |
|
741 |
} |
|
742 |
||
743 |
/* Various screen update functions available */ |
|
744 |
static void FB_DirectUpdate(_THIS, int numrects, SDL_Rect *rects); |
|
745 |
#ifdef VGA16_FBCON_SUPPORT |
|
746 |
static void FB_VGA16Update(_THIS, int numrects, SDL_Rect *rects); |
|
747 |
#endif |
|
748 |
||
749 |
#ifdef FBCON_DEBUG |
|
750 |
static void print_vinfo(struct fb_var_screeninfo *vinfo) |
|
751 |
{ |
|
752 |
fprintf(stderr, "Printing vinfo:\n"); |
|
753 |
fprintf(stderr, "\txres: %d\n", vinfo->xres); |
|
754 |
fprintf(stderr, "\tyres: %d\n", vinfo->yres); |
|
755 |
fprintf(stderr, "\txres_virtual: %d\n", vinfo->xres_virtual); |
|
756 |
fprintf(stderr, "\tyres_virtual: %d\n", vinfo->yres_virtual); |
|
757 |
fprintf(stderr, "\txoffset: %d\n", vinfo->xoffset); |
|
758 |
fprintf(stderr, "\tyoffset: %d\n", vinfo->yoffset); |
|
759 |
fprintf(stderr, "\tbits_per_pixel: %d\n", vinfo->bits_per_pixel); |
|
760 |
fprintf(stderr, "\tgrayscale: %d\n", vinfo->grayscale); |
|
761 |
fprintf(stderr, "\tnonstd: %d\n", vinfo->nonstd); |
|
762 |
fprintf(stderr, "\tactivate: %d\n", vinfo->activate); |
|
763 |
fprintf(stderr, "\theight: %d\n", vinfo->height); |
|
764 |
fprintf(stderr, "\twidth: %d\n", vinfo->width); |
|
765 |
fprintf(stderr, "\taccel_flags: %d\n", vinfo->accel_flags); |
|
766 |
fprintf(stderr, "\tpixclock: %d\n", vinfo->pixclock); |
|
767 |
fprintf(stderr, "\tleft_margin: %d\n", vinfo->left_margin); |
|
768 |
fprintf(stderr, "\tright_margin: %d\n", vinfo->right_margin); |
|
769 |
fprintf(stderr, "\tupper_margin: %d\n", vinfo->upper_margin); |
|
770 |
fprintf(stderr, "\tlower_margin: %d\n", vinfo->lower_margin); |
|
771 |
fprintf(stderr, "\thsync_len: %d\n", vinfo->hsync_len); |
|
772 |
fprintf(stderr, "\tvsync_len: %d\n", vinfo->vsync_len); |
|
773 |
fprintf(stderr, "\tsync: %d\n", vinfo->sync); |
|
774 |
fprintf(stderr, "\tvmode: %d\n", vinfo->vmode); |
|
775 |
fprintf(stderr, "\tred: %d/%d\n", vinfo->red.length, vinfo->red.offset); |
|
776 |
fprintf(stderr, "\tgreen: %d/%d\n", vinfo->green.length, vinfo->green.offset); |
|
777 |
fprintf(stderr, "\tblue: %d/%d\n", vinfo->blue.length, vinfo->blue.offset); |
|
778 |
fprintf(stderr, "\talpha: %d/%d\n", vinfo->transp.length, vinfo->transp.offset); |
|
779 |
} |
|
780 |
static void print_finfo(struct fb_fix_screeninfo *finfo) |
|
781 |
{ |
|
782 |
fprintf(stderr, "Printing finfo:\n"); |
|
783 |
fprintf(stderr, "\tsmem_start = %p\n", (char *)finfo->smem_start); |
|
784 |
fprintf(stderr, "\tsmem_len = %d\n", finfo->smem_len); |
|
785 |
fprintf(stderr, "\ttype = %d\n", finfo->type); |
|
786 |
fprintf(stderr, "\ttype_aux = %d\n", finfo->type_aux); |
|
787 |
fprintf(stderr, "\tvisual = %d\n", finfo->visual); |
|
788 |
fprintf(stderr, "\txpanstep = %d\n", finfo->xpanstep); |
|
789 |
fprintf(stderr, "\typanstep = %d\n", finfo->ypanstep); |
|
790 |
fprintf(stderr, "\tywrapstep = %d\n", finfo->ywrapstep); |
|
791 |
fprintf(stderr, "\tline_length = %d\n", finfo->line_length); |
|
792 |
fprintf(stderr, "\tmmio_start = %p\n", (char *)finfo->mmio_start); |
|
793 |
fprintf(stderr, "\tmmio_len = %d\n", finfo->mmio_len); |
|
794 |
fprintf(stderr, "\taccel = %d\n", finfo->accel); |
|
795 |
} |
|
796 |
#endif |
|
797 |
||
798 |
static int choose_fbmodes_mode(struct fb_var_screeninfo *vinfo) |
|
799 |
{ |
|
800 |
int matched; |
|
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
801 |
FILE *modesdb; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
802 |
struct fb_var_screeninfo cinfo; |
0 | 803 |
|
804 |
matched = 0; |
|
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
805 |
modesdb = fopen(FB_MODES_DB, "r"); |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
806 |
if ( modesdb ) { |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
807 |
/* Parse the mode definition file */ |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
808 |
while ( read_fbmodes_mode(modesdb, &cinfo) ) { |
1217
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
809 |
if ( (vinfo->xres == cinfo.xres && vinfo->yres == cinfo.yres) && |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
810 |
(!matched || (vinfo->bits_per_pixel == cinfo.bits_per_pixel)) ) { |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
811 |
vinfo->pixclock = cinfo.pixclock; |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
812 |
vinfo->left_margin = cinfo.left_margin; |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
813 |
vinfo->right_margin = cinfo.right_margin; |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
814 |
vinfo->upper_margin = cinfo.upper_margin; |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
815 |
vinfo->lower_margin = cinfo.lower_margin; |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
816 |
vinfo->hsync_len = cinfo.hsync_len; |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
817 |
vinfo->vsync_len = cinfo.vsync_len; |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
818 |
if ( matched ) { |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
819 |
break; |
ae9981987c2f
Oops, actually use the timings in the modes db. :)
Sam Lantinga <slouken@libsdl.org>
parents:
1215
diff
changeset
|
820 |
} |
1215
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
821 |
matched = 1; |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
822 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
823 |
} |
d082d2d66ec8
Added support for parsing /etc/fb.modes, based on Stephane Marchesin's patch
Sam Lantinga <slouken@libsdl.org>
parents:
1036
diff
changeset
|
824 |
fclose(modesdb); |
0 | 825 |
} |
826 |
return(matched); |
|
827 |
} |
|
828 |
||
829 |
static int choose_vesa_mode(struct fb_var_screeninfo *vinfo) |
|
830 |
{ |
|
831 |
int matched; |
|
832 |
int i; |
|
833 |
||
834 |
/* Check for VESA timings */ |
|
835 |
matched = 0; |
|
836 |
for ( i=0; i<(sizeof(vesa_timings)/sizeof(vesa_timings[0])); ++i ) { |
|
837 |
if ( (vinfo->xres == vesa_timings[i].xres) && |
|
838 |
(vinfo->yres == vesa_timings[i].yres) ) { |
|
839 |
#ifdef FBCON_DEBUG |
|
840 |
fprintf(stderr, "Using VESA timings for %dx%d\n", |
|
841 |
vinfo->xres, vinfo->yres); |
|
842 |
#endif |
|
843 |
if ( vesa_timings[i].pixclock ) { |
|
844 |
vinfo->pixclock = vesa_timings[i].pixclock; |
|
845 |
} |
|
846 |
vinfo->left_margin = vesa_timings[i].left; |
|
847 |
vinfo->right_margin = vesa_timings[i].right; |
|
848 |
vinfo->upper_margin = vesa_timings[i].upper; |
|
849 |
vinfo->lower_margin = vesa_timings[i].lower; |
|
850 |
vinfo->hsync_len = vesa_timings[i].hslen; |
|
851 |
vinfo->vsync_len = vesa_timings[i].vslen; |
|
852 |
vinfo->sync = vesa_timings[i].sync; |
|
853 |
vinfo->vmode = vesa_timings[i].vmode; |
|
854 |
matched = 1; |
|
855 |
break; |
|
856 |
} |
|
857 |
} |
|
858 |
return(matched); |
|
859 |
} |
|
860 |
||
861 |
#ifdef VGA16_FBCON_SUPPORT |
|
862 |
static SDL_Surface *FB_SetVGA16Mode(_THIS, SDL_Surface *current, |
|
863 |
int width, int height, int bpp, Uint32 flags) |
|
864 |
{ |
|
865 |
struct fb_fix_screeninfo finfo; |
|
866 |
struct fb_var_screeninfo vinfo; |
|
867 |
||
868 |
/* Set the terminal into graphics mode */ |
|
869 |
if ( FB_EnterGraphicsMode(this) < 0 ) { |
|
870 |
return(NULL); |
|
871 |
} |
|
872 |
||
873 |
/* Restore the original palette */ |
|
874 |
FB_RestorePalette(this); |
|
875 |
||
876 |
/* Set the video mode and get the final screen format */ |
|
877 |
if ( ioctl(console_fd, FBIOGET_VSCREENINFO, &vinfo) < 0 ) { |
|
878 |
SDL_SetError("Couldn't get console screen info"); |
|
879 |
return(NULL); |
|
880 |
} |
|
881 |
cache_vinfo = vinfo; |
|
882 |
#ifdef FBCON_DEBUG |
|
883 |
fprintf(stderr, "Printing actual vinfo:\n"); |
|
884 |
print_vinfo(&vinfo); |
|
885 |
#endif |
|
886 |
if ( ! SDL_ReallocFormat(current, bpp, 0, 0, 0, 0) ) { |
|
887 |
return(NULL); |
|
888 |
} |
|
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
889 |
current->format->palette->ncolors = 16; |
0 | 890 |
|
891 |
/* Get the fixed information about the console hardware. |
|
892 |
This is necessary since finfo.line_length changes. |
|
893 |
*/ |
|
894 |
if ( ioctl(console_fd, FBIOGET_FSCREENINFO, &finfo) < 0 ) { |
|
895 |
SDL_SetError("Couldn't get console hardware info"); |
|
896 |
return(NULL); |
|
897 |
} |
|
898 |
#ifdef FBCON_DEBUG |
|
899 |
fprintf(stderr, "Printing actual finfo:\n"); |
|
900 |
print_finfo(&finfo); |
|
901 |
#endif |
|
902 |
||
903 |
/* Save hardware palette, if needed */ |
|
904 |
FB_SavePalette(this, &finfo, &vinfo); |
|
905 |
||
906 |
/* Set up the new mode framebuffer */ |
|
907 |
current->flags = SDL_FULLSCREEN; |
|
908 |
current->w = vinfo.xres; |
|
909 |
current->h = vinfo.yres; |
|
910 |
current->pitch = current->w; |
|
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
911 |
current->pixels = SDL_malloc(current->h*current->pitch); |
0 | 912 |
|
913 |
/* Set the update rectangle function */ |
|
914 |
this->UpdateRects = FB_VGA16Update; |
|
915 |
||
916 |
/* We're done */ |
|
917 |
return(current); |
|
918 |
} |
|
919 |
#endif /* VGA16_FBCON_SUPPORT */ |
|
920 |
||
921 |
static SDL_Surface *FB_SetVideoMode(_THIS, SDL_Surface *current, |
|
922 |
int width, int height, int bpp, Uint32 flags) |
|
923 |
{ |
|
924 |
struct fb_fix_screeninfo finfo; |
|
925 |
struct fb_var_screeninfo vinfo; |
|
926 |
int i; |
|
927 |
Uint32 Rmask; |
|
928 |
Uint32 Gmask; |
|
929 |
Uint32 Bmask; |
|
930 |
char *surfaces_mem; |
|
931 |
int surfaces_len; |
|
932 |
||
933 |
/* Set the terminal into graphics mode */ |
|
934 |
if ( FB_EnterGraphicsMode(this) < 0 ) { |
|
935 |
return(NULL); |
|
936 |
} |
|
937 |
||
938 |
/* Restore the original palette */ |
|
939 |
FB_RestorePalette(this); |
|
940 |
||
941 |
/* Set the video mode and get the final screen format */ |
|
942 |
if ( ioctl(console_fd, FBIOGET_VSCREENINFO, &vinfo) < 0 ) { |
|
943 |
SDL_SetError("Couldn't get console screen info"); |
|
944 |
return(NULL); |
|
945 |
} |
|
946 |
#ifdef FBCON_DEBUG |
|
947 |
fprintf(stderr, "Printing original vinfo:\n"); |
|
948 |
print_vinfo(&vinfo); |
|
949 |
#endif |
|
950 |
if ( (vinfo.xres != width) || (vinfo.yres != height) || |
|
951 |
(vinfo.bits_per_pixel != bpp) || (flags & SDL_DOUBLEBUF) ) { |
|
952 |
vinfo.activate = FB_ACTIVATE_NOW; |
|
953 |
vinfo.accel_flags = 0; |
|
954 |
vinfo.bits_per_pixel = bpp; |
|
955 |
vinfo.xres = width; |
|
956 |
vinfo.xres_virtual = width; |
|
957 |
vinfo.yres = height; |
|
958 |
if ( flags & SDL_DOUBLEBUF ) { |
|
959 |
vinfo.yres_virtual = height*2; |
|
960 |
} else { |
|
961 |
vinfo.yres_virtual = height; |
|
962 |
} |
|
963 |
vinfo.xoffset = 0; |
|
964 |
vinfo.yoffset = 0; |
|
965 |
vinfo.red.length = vinfo.red.offset = 0; |
|
966 |
vinfo.green.length = vinfo.green.offset = 0; |
|
967 |
vinfo.blue.length = vinfo.blue.offset = 0; |
|
968 |
vinfo.transp.length = vinfo.transp.offset = 0; |
|
969 |
if ( ! choose_fbmodes_mode(&vinfo) ) { |
|
970 |
choose_vesa_mode(&vinfo); |
|
971 |
} |
|
972 |
#ifdef FBCON_DEBUG |
|
973 |
fprintf(stderr, "Printing wanted vinfo:\n"); |
|
974 |
print_vinfo(&vinfo); |
|
975 |
#endif |
|
976 |
if ( ioctl(console_fd, FBIOPUT_VSCREENINFO, &vinfo) < 0 ) { |
|
977 |
vinfo.yres_virtual = height; |
|
978 |
if ( ioctl(console_fd, FBIOPUT_VSCREENINFO, &vinfo) < 0 ) { |
|
979 |
SDL_SetError("Couldn't set console screen info"); |
|
980 |
return(NULL); |
|
981 |
} |
|
982 |
} |
|
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
983 |
} else { |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
984 |
int maxheight; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
985 |
|
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
986 |
/* Figure out how much video memory is available */ |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
987 |
if ( flags & SDL_DOUBLEBUF ) { |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
988 |
maxheight = height*2; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
989 |
} else { |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
990 |
maxheight = height; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
991 |
} |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
992 |
if ( vinfo.yres_virtual > maxheight ) { |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
993 |
vinfo.yres_virtual = maxheight; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
994 |
} |
0 | 995 |
} |
996 |
cache_vinfo = vinfo; |
|
997 |
#ifdef FBCON_DEBUG |
|
998 |
fprintf(stderr, "Printing actual vinfo:\n"); |
|
999 |
print_vinfo(&vinfo); |
|
1000 |
#endif |
|
1001 |
Rmask = 0; |
|
1002 |
for ( i=0; i<vinfo.red.length; ++i ) { |
|
1003 |
Rmask <<= 1; |
|
1004 |
Rmask |= (0x00000001<<vinfo.red.offset); |
|
1005 |
} |
|
1006 |
Gmask = 0; |
|
1007 |
for ( i=0; i<vinfo.green.length; ++i ) { |
|
1008 |
Gmask <<= 1; |
|
1009 |
Gmask |= (0x00000001<<vinfo.green.offset); |
|
1010 |
} |
|
1011 |
Bmask = 0; |
|
1012 |
for ( i=0; i<vinfo.blue.length; ++i ) { |
|
1013 |
Bmask <<= 1; |
|
1014 |
Bmask |= (0x00000001<<vinfo.blue.offset); |
|
1015 |
} |
|
1016 |
if ( ! SDL_ReallocFormat(current, vinfo.bits_per_pixel, |
|
1017 |
Rmask, Gmask, Bmask, 0) ) { |
|
1018 |
return(NULL); |
|
1019 |
} |
|
1020 |
||
1021 |
/* Get the fixed information about the console hardware. |
|
1022 |
This is necessary since finfo.line_length changes. |
|
1023 |
*/ |
|
1024 |
if ( ioctl(console_fd, FBIOGET_FSCREENINFO, &finfo) < 0 ) { |
|
1025 |
SDL_SetError("Couldn't get console hardware info"); |
|
1026 |
return(NULL); |
|
1027 |
} |
|
1028 |
||
1029 |
/* Save hardware palette, if needed */ |
|
1030 |
FB_SavePalette(this, &finfo, &vinfo); |
|
1031 |
||
1032 |
/* Set up the new mode framebuffer */ |
|
1033 |
current->flags = (SDL_FULLSCREEN|SDL_HWSURFACE); |
|
1034 |
current->w = vinfo.xres; |
|
1035 |
current->h = vinfo.yres; |
|
1036 |
current->pitch = finfo.line_length; |
|
1037 |
current->pixels = mapped_mem+mapped_offset; |
|
1038 |
||
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1039 |
/* Set up the information for hardware surfaces */ |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1040 |
surfaces_mem = (char *)current->pixels + |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1041 |
vinfo.yres_virtual*current->pitch; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1042 |
surfaces_len = (mapped_memlen-(surfaces_mem-mapped_mem)); |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1043 |
FB_FreeHWSurfaces(this); |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1044 |
FB_InitHWSurfaces(this, current, surfaces_mem, surfaces_len); |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1045 |
|
0 | 1046 |
/* Let the application know we have a hardware palette */ |
1047 |
switch (finfo.visual) { |
|
1048 |
case FB_VISUAL_PSEUDOCOLOR: |
|
1049 |
current->flags |= SDL_HWPALETTE; |
|
1050 |
break; |
|
1051 |
default: |
|
1052 |
break; |
|
1053 |
} |
|
1054 |
||
1055 |
/* Update for double-buffering, if we can */ |
|
1056 |
if ( flags & SDL_DOUBLEBUF ) { |
|
1057 |
if ( vinfo.yres_virtual == (height*2) ) { |
|
1058 |
current->flags |= SDL_DOUBLEBUF; |
|
1059 |
flip_page = 0; |
|
1060 |
flip_address[0] = (char *)current->pixels; |
|
1061 |
flip_address[1] = (char *)current->pixels+ |
|
1062 |
current->h*current->pitch; |
|
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1063 |
this->screen = current; |
0 | 1064 |
FB_FlipHWSurface(this, current); |
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1065 |
this->screen = NULL; |
0 | 1066 |
} |
1067 |
} |
|
1068 |
||
1069 |
/* Set the update rectangle function */ |
|
1070 |
this->UpdateRects = FB_DirectUpdate; |
|
1071 |
||
1072 |
/* We're done */ |
|
1073 |
return(current); |
|
1074 |
} |
|
1075 |
||
1076 |
#ifdef FBCON_DEBUG |
|
1077 |
void FB_DumpHWSurfaces(_THIS) |
|
1078 |
{ |
|
1079 |
vidmem_bucket *bucket; |
|
1080 |
||
1081 |
printf("Memory left: %d (%d total)\n", surfaces_memleft, surfaces_memtotal); |
|
1082 |
printf("\n"); |
|
1083 |
printf(" Base Size\n"); |
|
1084 |
for ( bucket=&surfaces; bucket; bucket=bucket->next ) { |
|
1085 |
printf("Bucket: %p, %d (%s)\n", bucket->base, bucket->size, bucket->used ? "used" : "free"); |
|
1086 |
if ( bucket->prev ) { |
|
1087 |
if ( bucket->base != bucket->prev->base+bucket->prev->size ) { |
|
1088 |
printf("Warning, corrupt bucket list! (prev)\n"); |
|
1089 |
} |
|
1090 |
} else { |
|
1091 |
if ( bucket != &surfaces ) { |
|
1092 |
printf("Warning, corrupt bucket list! (!prev)\n"); |
|
1093 |
} |
|
1094 |
} |
|
1095 |
if ( bucket->next ) { |
|
1096 |
if ( bucket->next->base != bucket->base+bucket->size ) { |
|
1097 |
printf("Warning, corrupt bucket list! (next)\n"); |
|
1098 |
} |
|
1099 |
} |
|
1100 |
} |
|
1101 |
printf("\n"); |
|
1102 |
} |
|
1103 |
#endif |
|
1104 |
||
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1105 |
static int FB_InitHWSurfaces(_THIS, SDL_Surface *screen, char *base, int size) |
0 | 1106 |
{ |
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1107 |
vidmem_bucket *bucket; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1108 |
|
0 | 1109 |
surfaces_memtotal = size; |
1110 |
surfaces_memleft = size; |
|
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1111 |
|
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1112 |
if ( surfaces_memleft > 0 ) { |
1336
3692456e7b0f
Use SDL_ prefixed versions of C library functions.
Sam Lantinga <slouken@libsdl.org>
parents:
1312
diff
changeset
|
1113 |
bucket = (vidmem_bucket *)SDL_malloc(sizeof(*bucket)); |
106
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1114 |
if ( bucket == NULL ) { |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1115 |
SDL_OutOfMemory(); |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1116 |
return(-1); |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1117 |
} |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1118 |
bucket->prev = &surfaces; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1119 |
bucket->used = 0; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1120 |
bucket->dirty = 0; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1121 |
bucket->base = base; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1122 |
bucket->size = size; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1123 |
bucket->next = NULL; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1124 |
} else { |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1125 |
bucket = NULL; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1126 |
} |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1127 |
|
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|
1128 |
surfaces.prev = NULL; |
63ec24e0575f
Merged DGA video surface handling improvements, unified locking code.
Sam Lantinga <slouken@lokigames.com>
parents:
91
diff
changeset
|