Removed some more trailing whitespace.
[wine/multimedia.git] / dlls / opengl32 / make_opengl
blob88745655219bc83a7c14502632be915e759f4a52
1 #!/usr/bin/perl -w
3 # This script is called thus :
5 # make_opengl path_to_spec_file opengl_version
7 # - path_to_spec_file is the path to the directory where the OpenGL
8 # spec files are located. These files are part of the OpenGL
9 # sample implementation CVS tree and are located in
10 # CVS_ROOT/projects/ogl-sample/main/doc/registry/specs.
11 # You can find them on the web at the following URL :
12 # http://oss.sgi.com/cgi-bin/cvsweb.cgi/projects/ogl-sample/main/doc/registry/specs/
14 # - opengl_version is the OpenGL version emulated by the library
15 # (can be 1.0 to 1.2).
17 # This script generates the three following files :
19 # - opengl32.spec : the spec file giving all the exported functions
20 # of the OpenGL32.DLL library. These functions are the one an
21 # application can directly link to (and are all the functions
22 # defined in the OpenGL core for the version defined by
23 # 'opengl_version').
25 # - opengl_norm.c : this file contains the thunks for all OpenGL
26 # functions that are defined in 'opengl32.spec'. The corresponding
27 # functions NEED to be defined in Linux's libGL or the library
28 # won't be able to be linked in.
30 # - opengl_ext.c : in this file are stored thunks for ALL possible
31 # OpenGL extensions (at least, all the extensions that are defined
32 # in the OpenGL extension registry). Contrary to 'opengl_norm.c',
33 # you do not need to have these extensions in your libGL to have
34 # OpenGL work (as they are resolved at run-time using
35 # glXGetProcAddressARB).
37 # Copyright 2000 Lionel Ulmer
39 # This library is free software; you can redistribute it and/or
40 # modify it under the terms of the GNU Lesser General Public
41 # License as published by the Free Software Foundation; either
42 # version 2.1 of the License, or (at your option) any later version.
44 # This library is distributed in the hope that it will be useful,
45 # but WITHOUT ANY WARRANTY; without even the implied warranty of
46 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
47 # Lesser General Public License for more details.
49 # You should have received a copy of the GNU Lesser General Public
50 # License along with this library; if not, write to the Free Software
51 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
55 # Files to generate
57 $spec_file = "opengl32.spec";
58 $norm_file = "opengl_norm.c";
59 $ext_file = "opengl_ext.c";
61 # Set to 0 for removing the ENTER / LEAVE GL calls
62 $gen_thread_safe = 1;
63 # Prefix used for the local variables
64 $ext_prefix = "func_";
65 # If set to 1, generate TRACEs for each OpenGL function
66 $gen_traces = 1;
69 # List of categories to put in the 'opengl_norm.c' file
71 %cat_1_0 = ( "display-list" => 1,
72 "drawing" => 1,
73 "drawing-control" => 1,
74 "feedback" => 1,
75 "framebuf" => 1,
76 "misc" => 1,
77 "modeling" => 1,
78 "pixel-op" => 1,
79 "pixel-rw" => 1,
80 "state-req" => 1,
81 "xform" => 1 );
82 %cat_1_1 = ( %cat_1_0,
83 "1_1" => 1 );
84 %cat_1_2 = ( %cat_1_1,
85 "VERSION_1_2" => 1,
86 "ARB_multitexture" => 1 );
88 %norm_categories = ();
91 # This hash table gives the conversion between OpenGL types and what
92 # is used by the TRACE printfs
94 %debug_conv =
95 ("GLbitfield" => "%d",
96 "GLboolean" => "%d",
97 "GLbyte" => "%d",
98 "GLclampd" => "%f",
99 "GLclampf" => "%f",
100 "GLdouble" => "%f",
101 "GLenum" => "%d",
102 "GLfloat" => "%f",
103 "GLint" => "%d",
104 "GLshort" => "%d",
105 "GLsizei" => "%d",
106 "GLstring" => "%s",
107 "GLubyte" => "%d",
108 "GLuint" => "%d",
109 "GLushort" => "%d",
110 "GLvoid" => "(void)",
111 "_GLfuncptr" => "%p");
114 # This hash table gives the conversion between OpenGL types and what
115 # is used in the .spec file
117 %arg_conv =
118 ("GLbitfield" => [ "long", 4 ],
119 "GLboolean" => [ "long", 4 ],
120 "GLbyte" => [ "long", 4 ],
121 "GLclampd" => [ "double", 8 ],
122 "GLclampf" => [ "long", 4 ],
123 "GLdouble" => [ "double", 8 ],
124 "GLenum" => [ "long", 4 ],
125 "GLfloat" => [ "long", 4 ],
126 "GLint" => [ "long", 4 ],
127 "GLshort" => [ "long", 4 ],
128 "GLsizei" => [ "long", 4 ],
129 "GLstring" => [ "str", 4 ],
130 "GLubyte" => [ "long", 4 ],
131 "GLuint" => [ "long", 4 ],
132 "GLushort" => [ "long", 4 ],
133 "GLvoid" => [ "void", 4 ],
134 "_GLfuncptr" => [ "ptr", 4 ]);
137 # This functions generates the thunk for a given function.
139 sub GenerateThunk {
140 my ($func_ref, $comment, $prefix, $thread_safe) = @_;
141 my ($ret) = ("");
142 my ($call_arg) = ("");
143 my ($trace_arg) = ("");
145 # If for opengl_norm.c, generate a nice heading otherwise Patrik won't be happy :-)
146 # Patrik says: Well I would be even happier if a (OPENGL32.@) was added as well. Done. :-)
147 if ($comment eq 1) {
148 $ret = $ret . "/***********************************************************************\n";
149 $ret = $ret . " * " . $func_ref->[0] . " (OPENGL32.@)\n";
150 $ret = $ret . " */\n";
152 $ret = $ret . $func_ref->[1] . " WINAPI wine_" . $func_ref->[0] . "( ";
153 for ($i = 0; $i <= $#{@{$func_ref->[2]}}; $i++) {
154 $type = $func_ref->[2]->[$i]->[0];
155 $name = $func_ref->[2]->[$i]->[1];
156 $ret = $ret . "$type $name";
157 $call_arg = $call_arg . "$name";
158 if ($type =~ /\*/) {
159 $trace_arg = $trace_arg . "%p";
160 } else {
161 $trace_arg = $trace_arg . $debug_conv{$type};
163 if ($i != $#{@{$func_ref->[2]}}) {
164 $ret = $ret . ", ";
165 $call_arg = $call_arg . ", ";
166 $trace_arg = $trace_arg . ", ";
167 } else {
168 $ret = $ret . " ";
169 $call_arg = $call_arg . " ";
172 $ret = $ret . ") {\n";
173 if ($func_ref->[1] ne "void") {
174 $ret = $ret . " " . $func_ref->[1] . " ret_value;\n";
176 if ($gen_traces) {
177 $ret = $ret . " TRACE(\"(" . $trace_arg . ")\\n\"";
178 if ($trace_arg ne "") {
179 $ret = $ret . ", " . $call_arg;
181 $ret = $ret . ");\n";
183 if ($thread_safe) {
184 $ret = $ret . " ENTER_GL();\n";
186 $ret = $ret . " ";
187 if ($func_ref->[1] ne "void") {
188 $ret = $ret . "ret_value = ";
190 $ret = $ret . $prefix . $func_ref->[0] . "( " . $call_arg . ");\n";
191 if ($thread_safe) {
192 $ret = $ret . " LEAVE_GL();\n";
194 if ($func_ref->[1] ne "void") {
195 $ret = $ret . " return ret_value;\n"
197 $ret = $ret . "}\n";
199 # Return this string....
200 $ret;
204 # Extract and checks the number of arguments
206 if ($#ARGV != 1) {
207 die "Usage : make_opengl OpenGL_registry_location OpenGL_version.\n";
209 $registry_path = shift @ARGV;
210 $version = shift @ARGV;
211 if ($version eq "1.0") {
212 %norm_categories = %cat_1_0;
213 } elsif ($version eq "1.1") {
214 %norm_categories = %cat_1_1;
215 } elsif ($version eq "1.2") {
216 %norm_categories = %cat_1_2;
217 } else {
218 die "OpenGL version incorrect. Should be one of '1.0', '1.1' or '1.2'.\n";
222 # Open the registry files
224 open(TYPES, $registry_path . "/gl.tm") || die "Could not open 'gl.tm'. Please check your path the the registry files.\n";
225 open(REGISTRY, $registry_path . "/gl.spec") || die "Could not open 'gl.spec'. Please check your path the the registry files.\n";
228 # First, create a mapping between the pseudo types used in the spec file
229 # and OpenGL types using the 'gl.tm' file.
231 %pseudo_to_opengl = ();
232 while ($line = <TYPES>) {
233 ($pseudo, $opengl) = ($line =~ /(\w*),\*,\*,\s*(.*),\*,\*/);
234 $pseudo_to_opengl{$pseudo} = $opengl;
236 # This is to override the 'void' -> '*' bogus conversion
237 $pseudo_to_opengl{"void"} = "void";
238 # This is a bug in the spec file...
239 $pseudo_to_opengl{"FfdTargetSGIX"} = "GLint";
240 $pseudo_to_opengl{"FfdMaskSGIX"} = "GLint";
241 $pseudo_to_opengl{"IglooFunctionSelectSGIX"} = "GLint";
242 $pseudo_to_opengl{"IglooParameterSGIX"} = "GLint";
245 # Then, create the list of all OpenGL functions using the 'gl.spec'
246 # file. This will create two hash-tables, one with all the function
247 # whose category matches the one listed in '@norm_categories', the other
248 # with all other functions.
250 # An element of the hash table is a reference to an array with these
251 # elements :
253 # - function name
255 # - return type
257 # - reference to an array giving the list of arguments (an empty array
258 # for a 'void' function).
260 # The list of arguments is itself an array of reference to arrays. Each
261 # of these arrays represents the argument type and the argument name.
263 # An example :
265 # void glBitmap( GLsizei width, GLsizei height,
266 # GLfloat xorig, GLfloat yorig,
267 # GLfloat xmove, GLfloat ymove,
268 # const GLubyte *bitmap );
270 # Would give something like that :
272 # [ "glBitmap",
273 # "void",
274 # [ [ "GLsizei", "width" ],
275 # [ "GLsizei", "height" ],
276 # [ "GLfloat", "xorig" ],
277 # [ "GLfloat", "yorig" ],
278 # [ "GLfloat", "xmove" ],
279 # [ "GLfloat", "ymove" ],
280 # [ "GLubyte *", "bitmap"] ] ];
282 %norm_functions = ();
283 %ext_functions =
284 ( "glMTexCoord2fSGIS" => [ "glMTexCoord2fSGIS", "void", [ [ "GLenum", "target" ],
285 [ "GLfloat", "s" ],
286 [ "GLfloat", "t" ] ], "glMTexCoord2fSGIS" ],
287 "glMTexCoord2fvSGIS" => [ "glMTexCoord2fvSGIS", "void", [ [ "GLenum", "target" ],
288 [ "GLfloat *", "v" ] ], "glMTexCoord2fvSGIS" ],
289 "glMultiTexCoord1dSGIS" => [ "glMultiTexCoord1dSGIS", "void", [ [ "GLenum", "target" ],
290 [ "GLdouble", "s" ] ], "glMultiTexCoord1dSGIS" ],
291 "glMultiTexCoord1dvSGIS" => [ "glMultiTexCoord1dvSGIS", "void", [ [ "GLenum", "target" ],
292 [ "GLdouble *", "v" ] ], "glMultiTexCoord1dvSGIS" ],
293 "glMultiTexCoord1fSGIS" => [ "glMultiTexCoord1fSGIS", "void", [ [ "GLenum", "target" ],
294 [ "GLfloat", "s" ] ], "glMultiTexCoord1fSGIS" ],
295 "glMultiTexCoord1fvSGIS" => [ "glMultiTexCoord1fvSGIS", "void", [ [ "GLenum", "target" ],
296 [ "const GLfloat *", "v" ] ], "glMultiTexCoord1fvSGIS" ],
297 "glMultiTexCoord1iSGIS" => [ "glMultiTexCoord1iSGIS", "void", [ [ "GLenum", "target" ],
298 [ "GLint", "s" ] ], "glMultiTexCoord1iSGIS" ],
299 "glMultiTexCoord1ivSGIS" => [ "glMultiTexCoord1ivSGIS", "void", [ [ "GLenum", "target" ],
300 [ "GLint *", "v" ] ], "glMultiTexCoord1ivSGIS" ],
301 "glMultiTexCoord1sSGIS" => [ "glMultiTexCoord1sSGIS", "void", [ [ "GLenum", "target" ],
302 [ "GLshort", "s" ] ], "glMultiTexCoord1sSGIS" ],
303 "glMultiTexCoord1svSGIS" => [ "glMultiTexCoord1svSGIS", "void", [ [ "GLenum", "target" ],
304 [ "GLshort *", "v" ] ], "glMultiTexCoord1svSGIS" ],
305 "glMultiTexCoord2dSGIS" => [ "glMultiTexCoord2dSGIS", "void", [ [ "GLenum", "target" ],
306 [ "GLdouble", "s"],
307 [ "GLdouble", "t" ] ], "glMultiTexCoord2dSGIS" ],
308 "glMultiTexCoord2dvSGIS" => [ "glMultiTexCoord2dvSGIS", "void", [ [ "GLenum", "target" ],
309 [ "GLdouble *", "v" ] ], "glMultiTexCoord2dvSGIS" ],
310 "glMultiTexCoord2fSGIS" => [ "glMultiTexCoord2fSGIS", "void", [ [ "GLenum", "target" ],
311 [ "GLfloat", "s" ],
312 [ "GLfloat", "t" ] ], "glMultiTexCoord2fSGIS" ],
313 "glMultiTexCoord2fvSGIS" => [ "glMultiTexCoord2fvSGIS", "void", [ [ "GLenum", "target" ],
314 [ "GLfloat *", "v" ] ], "glMultiTexCoord2fvSGIS" ],
315 "glMultiTexCoord2iSGIS" => [ "glMultiTexCoord2iSGIS", "void", [ [ "GLenum", "target" ],
316 [ "GLint", "s" ],
317 [ "GLint", "t" ] ], "glMultiTexCoord2iSGIS" ],
318 "glMultiTexCoord2ivSGIS" => [ "glMultiTexCoord2ivSGIS", "void", [ [ "GLenum", "target" ],
319 [ "GLint *", "v" ] ], "glMultiTexCoord2ivSGIS" ],
320 "glMultiTexCoord2sSGIS" => [ "glMultiTexCoord2sSGIS", "void", [ [ "GLenum", "target" ],
321 [ "GLshort", "s" ],
322 [ "GLshort", "t" ] ], "glMultiTexCoord2sSGIS" ],
323 "glMultiTexCoord2svSGIS" => [ "glMultiTexCoord2svSGIS", "void", [ [ "GLenum", "target" ],
324 [ "GLshort *", "v" ] ], "glMultiTexCoord2svSGIS" ],
325 "glMultiTexCoord3dSGIS" => [ "glMultiTexCoord3dSGIS", "void", [ [ "GLenum", "target" ],
326 [ "GLdouble", "s" ],
327 [ "GLdouble", "t" ],
328 [ "GLdouble", "r" ] ], "glMultiTexCoord3dSGIS" ],
329 "glMultiTexCoord3dvSGIS" => [ "glMultiTexCoord3dvSGIS", "void", [ [ "GLenum", "target" ],
330 [ "GLdouble *", "v" ] ], "glMultiTexCoord3dvSGIS" ],
331 "glMultiTexCoord3fSGIS" => [ "glMultiTexCoord3fSGIS", "void", [ [ "GLenum", "target" ],
332 [ "GLfloat", "s" ],
333 [ "GLfloat", "t" ],
334 [ "GLfloat", "r" ] ], "glMultiTexCoord3fSGIS" ],
335 "glMultiTexCoord3fvSGIS" => [ "glMultiTexCoord3fvSGIS", "void", [ [ "GLenum", "target" ],
336 [ "GLfloat *", "v" ] ], "glMultiTexCoord3fvSGIS" ],
337 "glMultiTexCoord3iSGIS" => [ "glMultiTexCoord3iSGIS", "void", [ [ "GLenum", "target" ],
338 [ "GLint", "s" ],
339 [ "GLint", "t" ],
340 [ "GLint", "r" ] ], "glMultiTexCoord3iSGIS" ],
341 "glMultiTexCoord3ivSGIS" => [ "glMultiTexCoord3ivSGIS", "void", [ [ "GLenum", "target" ],
342 [ "GLint *", "v" ] ], "glMultiTexCoord3ivSGIS" ],
343 "glMultiTexCoord3sSGIS" => [ "glMultiTexCoord3sSGIS", "void", [ [ "GLenum", "target" ],
344 [ "GLshort", "s" ],
345 [ "GLshort", "t" ],
346 [ "GLshort", "r" ] ], "glMultiTexCoord3sSGIS" ],
347 "glMultiTexCoord3svSGIS" => [ "glMultiTexCoord3svSGIS", "void", [ [ "GLenum", "target" ],
348 [ "GLshort *", "v" ] ], "glMultiTexCoord3svSGIS" ],
349 "glMultiTexCoord4dSGIS" => [ "glMultiTexCoord4dSGIS", "void", [ [ "GLenum", "target" ],
350 [ "GLdouble", "s" ],
351 [ "GLdouble", "t" ],
352 [ "GLdouble", "r" ],
353 [ "GLdouble", "q" ] ], "glMultiTexCoord4dSGIS" ],
354 "glMultiTexCoord4dvSGIS" => [ "glMultiTexCoord4dvSGIS", "void", [ [ "GLenum", "target" ],
355 [ "GLdouble *", "v" ] ], "glMultiTexCoord4dvSGIS" ],
356 "glMultiTexCoord4fSGIS" => [ "glMultiTexCoord4fSGIS", "void", [ [ "GLenum", "target" ],
357 [ "GLfloat", "s" ],
358 [ "GLfloat", "t" ],
359 [ "GLfloat", "r" ],
360 [ "GLfloat", "q" ] ], "glMultiTexCoord4fSGIS" ],
361 "glMultiTexCoord4fvSGIS" => [ "glMultiTexCoord4fvSGIS", "void", [ [ "GLenum", "target" ],
362 [ "GLfloat *", "v" ] ], "glMultiTexCoord4fvSGIS" ],
363 "glMultiTexCoord4iSGIS" => [ "glMultiTexCoord4iSGIS", "void", [ [ "GLenum", "target" ],
364 [ "GLint", "s" ],
365 [ "GLint", "t" ],
366 [ "GLint", "r" ],
367 [ "GLint", "q" ] ], "glMultiTexCoord4iSGIS" ],
368 "glMultiTexCoord4ivSGIS" => [ "glMultiTexCoord4ivSGIS", "void", [ [ "GLenum", "target" ],
369 [ "GLint *", "v" ] ], "glMultiTexCoord4ivSGIS" ],
370 "glMultiTexCoord4sSGIS" => [ "glMultiTexCoord4sSGIS", "void", [ [ "GLenum", "target" ],
371 [ "GLshort", "s" ],
372 [ "GLshort", "t" ],
373 [ "GLshort", "r" ],
374 [ "GLshort", "q" ] ], "glMultiTexCoord4sSGIS" ],
375 "glMultiTexCoord4svSGIS" => [ "glMultiTexCoord4svSGIS", "void", [ [ "GLenum", "target" ],
376 [ "GLshort *", "v" ] ], "glMultiTexCoord4svSGIS" ],
377 "glMultiTexCoordPointerSGIS" => [ "glMultiTexCoordPointerSGIS", "void", [ [ "GLenum", "target" ],
378 [ "GLint", "size" ],
379 [ "GLenum", "type" ],
380 [ "GLsizei", "stride" ],
381 [ "GLvoid *", "pointer" ] ], "glMultiTexCoordPointerSGIS" ],
382 "glSelectTextureSGIS" => [ "glSelectTextureSGIS", "void", [ [ "GLenum", "target" ] ], "glSelectTextureSGIS" ],
383 "glSelectTextureCoordSetSGIS" => [ "glSelectTextureCoordSetSGIS", "void", [ [ "GLenum", "target" ] ], "glSelectTextureCoordSetSGIS" ],
384 "wglAllocateMemoryNV" => [ "wglAllocateMemoryNV", "void *", [ [ "GLsizei", "size" ],
385 [ "GLfloat", "readfreq" ],
386 [ "GLfloat", "writefreq"],
387 [ "GLfloat", "priority" ] ], "glXAllocateMemoryNV" ],
388 "wglFreeMemoryNV" => [ "wglFreeMemoryNV", "void", [ [ "GLvoid *", "pointer" ] ], "glXFreeMemoryNV" ]
392 while ($line = <REGISTRY>) {
393 if ($line =~ /^\w*\(.*\)/) {
394 # Get the function name (NOTE: the 'gl' prefix needs to be added later)
395 ($funcname, $args) = ($line =~ /^(\w*)\((.*)\)/);
396 # and the argument names
397 @arg_names = split /\s*,\s*/, $args;
399 # After get :
400 # - the return type
401 # - the argument types
402 # - the category the function belongs
403 %arg_types = ();
404 $category = "";
405 $ret_type = "";
406 while (1) {
407 $line = <REGISTRY>;
408 unless (defined($line)) {
409 last;
410 } elsif ($line =~ /^\s*$/) {
411 if (($category eq "") || ($ret_type eq "")) {
412 die "Missing 'category' line in function $funcname.\n";
414 last;
415 } elsif ($line =~ /\t*return\t*(\w*)/) {
416 ($ret_type) = ($line =~ /\t*return\s*(\w*)/);
417 $ret_type = $pseudo_to_opengl{$ret_type};
418 unless (defined($ret_type)) {
419 die "Unsupported return type in function $funcname\n";
421 } elsif ($line =~ /^\t*category/) {
422 ($category) = ($line =~ /^\t*category\s*([\w-]*)/);
423 } elsif ($line =~ /^\t*param/) {
424 ($name, $base_type, $ext) = ($line =~ /\t*param\s*(\w*)\s*(\w*) (.*)/);
425 $ptr = 0;
426 unless (defined($name)) {
427 chomp $line;
428 die "Broken spec file line $line in function $funcname\n";
431 if ($ext =~ /array/) {
432 # This is a pointer
433 $ptr = 1;
434 } elsif ($ext =~ /value/) {
435 # And this a 'normal' value
436 $ptr = 0;
437 } else {
438 chomp $line;
439 die "Unsupported type : $line in function $funcname\n";
441 # Get the 'real' type and append a '*' in case of a pointer
442 $type = $pseudo_to_opengl{$base_type};
443 unless (defined($type)) {
444 chomp $line;
445 die "Unsupported return type in function $funcname for type $base_type (line $line)\n";
447 if ($ptr) {
448 $type = $type . "*";
451 $arg_types{$name} = $type;
455 # Now, build the argument reference
456 $arg_ref = [ ];
457 for ($i = 0; $i <= $#arg_names; $i++) {
458 unless (defined($arg_types{$arg_names[$i]})) {
459 print "@arg_names\n";
460 foreach (sort keys %arg_types) {
461 print "$_ => $arg_types{$_}\n";
463 die "Undefined type for $arg_names[$i] in function $funcname\n";
466 push @$arg_ref, [ $arg_types{$arg_names[$i]}, $arg_names[$i] ];
468 $func_ref = [ "gl" . $funcname,
469 $ret_type,
470 $arg_ref,
471 "gl" . $funcname ];
473 # Now, put in one or the other hash table
474 if ($norm_categories{$category}) {
475 $norm_functions{"gl" . $funcname} = $func_ref;
476 } else {
477 $ext_functions{"gl" . $funcname} = $func_ref;
483 # Clean up the input files
485 close(TYPES);
486 close(REGISTRY);
489 # Now, generate the output files. First, the spec file.
491 open(SPEC, ">" . $spec_file);
493 print SPEC "name opengl32
494 type win32
495 init OpenGL32_Init
497 import user32.dll
498 import x11drv.dll
499 import kernel32.dll
500 import ntdll.dll
502 debug_channels (opengl)
504 @ stdcall wglCreateContext(long) wglCreateContext
505 @ stdcall wglCreateLayerContext(long long) wglCreateLayerContext
506 @ stdcall wglCopyContext(long long long) wglCopyContext
507 @ stdcall wglDeleteContext(long) wglDeleteContext
508 @ stdcall wglDescribeLayerPlane(long long long long ptr) wglDescribeLayerPlane
509 @ stdcall wglGetCurrentContext() wglGetCurrentContext
510 @ stdcall wglGetCurrentDC() wglGetCurrentDC
511 @ stdcall wglGetLayerPaletteEntries(long long long long ptr) wglGetLayerPaletteEntries
512 @ stdcall wglGetProcAddress(str) wglGetProcAddress
513 @ stdcall wglMakeCurrent(long long) wglMakeCurrent
514 @ stdcall wglRealizeLayerPalette(long long long) wglRealizeLayerPalette
515 @ stdcall wglSetLayerPaletteEntries(long long long long ptr) wglSetLayerPaletteEntries
516 @ stdcall wglShareLists(long long) wglShareLists
517 @ stdcall wglSwapLayerBuffers(long long) wglSwapLayerBuffers
518 @ stdcall wglUseFontBitmapsA(long long long long) wglUseFontBitmapsA
519 @ stdcall wglUseFontOutlinesA(long long long long long long long ptr) wglUseFontOutlinesA
520 @ stub glGetLevelParameterfv
521 @ stub glGetLevelParameteriv
522 @ stub wglUseFontBitmapsW
523 @ stub wglUseFontOutlinesW
524 @ forward wglChoosePixelFormat GDI32.ChoosePixelFormat
525 @ forward wglDescribePixelFormat GDI32.DescribePixelFormat
526 @ forward wglGetPixelFormat GDI32.GetPixelFormat
527 @ forward wglSetPixelFormat GDI32.SetPixelFormat
528 @ forward wglSwapBuffers GDI32.SwapBuffers
531 foreach (sort keys %norm_functions) {
532 $func_name = $norm_functions{$_}->[0];
533 print SPEC "@ stdcall $func_name( ";
534 for ($i = 0; $i <= $#{@{$norm_functions{$_}->[2]}}; $i++) {
535 $type = $norm_functions{$_}->[2]->[$i]->[0];
536 if ($type =~ /\*/) {
537 print SPEC "ptr ";
538 } elsif (defined($arg_conv{$type})) {
539 print SPEC "$@$arg_conv{$type}[0] ";
540 } else {
541 die "No convertion for GL type $type...\n";
544 print SPEC ") wine_$func_name\n";
546 close(SPEC);
549 # After the spec file, the opengl_norm.c file
551 open(NORM, ">" . $norm_file);
552 print NORM "
553 /* Auto-generated file... Do not edit ! */
555 #include \"config.h\"
556 #include \"wine_gl.h\"
557 #include \"wine/debug.h\"
559 typedef const GLubyte * GLstring;
561 WINE_DEFAULT_DEBUG_CHANNEL(opengl);
564 foreach (sort keys %norm_functions) {
565 $string = GenerateThunk($norm_functions{$_}, 1, "", $gen_thread_safe);
567 print NORM "$string\n";
569 close(NORM);
572 # Finally, more complex, the opengl_ext.c file
574 open(EXT, ">" . $ext_file);
575 print EXT "
576 /* Auto-generated file... Do not edit ! */
578 #include \"config.h\"
579 #include \"wine_gl.h\"
580 #include \"wine/debug.h\"
582 typedef const GLubyte * GLstring;
584 #include \"opengl_ext.h\"
586 WINE_DEFAULT_DEBUG_CHANNEL(opengl);
590 # First, generate the function pointers
591 foreach (sort keys %ext_functions) {
592 $func_ref = $ext_functions{$_};
593 print EXT $func_ref->[1] . " (*" . $ext_prefix . $func_ref->[0] . ")( ";
594 for ($i = 0; $i <= $#{@{$func_ref->[2]}}; $i++) {
595 $type = $func_ref->[2]->[$i]->[0];
596 print EXT "$type";
597 if ($i != $#{@{$func_ref->[2]}}) {
598 print EXT ", ";
599 } else {
600 print EXT " ";
603 print EXT ") = (void *) 0xdeadbeef;\n";
606 # Then, the function prototypes
607 print EXT "\n\n/* The function prototypes */\n";
608 foreach (sort keys %ext_functions) {
609 $func_ref = $ext_functions{$_};
610 print EXT $func_ref->[1] . " WINAPI " . "wine_" . $func_ref->[0] . "( ";
611 for ($i = 0; $i <= $#{@{$func_ref->[2]}}; $i++) {
612 $type = $func_ref->[2]->[$i]->[0];
613 print EXT "$type";
614 if ($i != $#{@{$func_ref->[2]}}) {
615 print EXT ", ";
616 } else {
617 print EXT " ";
620 print EXT ");\n";
623 # Then the table giving the string <-> function correspondance */
624 print EXT "\n\n/* The table giving the correspondance between names and functions */\n";
625 @tmp = keys %ext_functions;
626 print EXT "int extension_registry_size = " . ($#tmp + 1) . ";\n";
627 print EXT "OpenGL_extension extension_registry[" . ($#tmp + 1) . "] = {\n";
628 $i = 0;
629 foreach (sort keys %ext_functions) {
630 $func_ref = $ext_functions{$_};
631 print EXT " { \"" . $func_ref->[0] . "\", \"" . $func_ref->[3] . "\", (void *) wine_" . $func_ref->[0] . ", (void **) (&" . $ext_prefix . $func_ref->[0] . ") }";
632 if ($i != $#tmp) {
633 print EXT ",";
635 $i++;
636 print EXT "\n";
638 print EXT "};\n";
640 # And, finally, the thunks themselves....
641 print EXT "\n/* The thunks themselves....*/\n";
642 foreach (sort keys %ext_functions) {
643 $string = GenerateThunk($ext_functions{$_}, 0, $ext_prefix, $gen_thread_safe);
645 print EXT "$string\n";
647 close(EXT);