Mercurial > sdl-ios-xcode
annotate src/main/beos/exports/genexp.pl @ 860:2bac79e27868
Create a 2D window and then manually focus a different window on your desktop,
call SDL_PumpEvents() so the X11 driver sets its this->hidden->switch_waiting,
then set a fullscreen OpenGL window (which makes the X11 driver tear down and
create a new window instead of just resizing the existing one), poll for
events, and the newly-created window will think it needs to pop back to a
window. Fixed by resetting switch_waiting to zero if X11_CreateWindow() had
to tear down a previous window.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 26 Feb 2004 15:12:51 +0000 |
parents | 05b97424225f |
children | 02759105b989 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/perl |
2 # | |
3 # Program to take a set of header files and generate MWCC export definitions | |
4 | |
5 while ( ($file = shift(@ARGV)) ) { | |
6 if ( ! defined(open(FILE, $file)) ) { | |
7 warn "Couldn't open $file: $!\n"; | |
8 next; | |
9 } | |
10 $file =~ s,.*/,,; | |
11 while (<FILE>) { | |
345
05b97424225f
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
337
diff
changeset
|
12 if ( / DECLSPEC.*SDLCALL ([^\s\(]+)/ ) { |
0 | 13 print "_$1\n"; |
14 } | |
15 } | |
16 close(FILE); | |
17 } | |
18 # Special exports not public in the header files |