5 # This script is called thus :
7 # make_opengl [opengl_version]
9 # - It needs files from the OpenGL extension registry:
11 # https://raw.github.com/KhronosGroup/OpenGL-Registry/master/xml/gl.xml
12 # https://raw.github.com/KhronosGroup/OpenGL-Registry/master/xml/wgl.xml
14 # If they are not found in the current directory the script will
15 # attempt to download them from there.
17 # - opengl_version is the OpenGL version emulated by the library
18 # (can be 1.0 to 1.5). The default is 1.1.
20 # This script generates the three following files :
22 # - opengl32.spec : the spec file giving all the exported functions
23 # of the OpenGL32.DLL library. These functions are the one an
24 # application can directly link to (and are all the functions
25 # defined in the OpenGL core for the version defined by
28 # - opengl_norm.c : this file contains the thunks for all OpenGL
29 # functions that are defined in 'opengl32.spec'. The corresponding
30 # functions NEED to be defined in Linux's libGL or the library
31 # won't be able to be linked in.
33 # - opengl_ext.c : in this file are stored thunks for ALL possible
34 # OpenGL extensions (at least, all the extensions that are defined
35 # in the OpenGL extension registry). Contrary to 'opengl_norm.c',
36 # you do not need to have these extensions in your libGL to have
37 # OpenGL work (as they are resolved at run-time using
38 # glXGetProcAddressARB).
40 # - include/wine/wgl_driver.h: definitions for the tables of OpenGL functions.
43 # Copyright 2000 Lionel Ulmer
44 # Copyright 2012 Alexandre Julliard
46 # This library is free software; you can redistribute it and/or
47 # modify it under the terms of the GNU Lesser General Public
48 # License as published by the Free Software Foundation; either
49 # version 2.1 of the License, or (at your option) any later version.
51 # This library is distributed in the hope that it will be useful,
52 # but WITHOUT ANY WARRANTY; without even the implied warranty of
53 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
54 # Lesser General Public License for more details.
56 # You should have received a copy of the GNU Lesser General Public
57 # License along with this library; if not, write to the Free Software
58 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
64 my $spec_file = "opengl32.spec";
65 my $norm_file = "opengl_norm.c";
66 my $ext_file = "opengl_ext.c";
67 my $wgl_driver_file = "../../include/wine/wgl_driver.h";
68 my $wgl_file = "../../include/wine/wgl.h";
70 # If set to 1, generate TRACEs for each OpenGL function
74 # List of categories to put in the 'opengl_norm.c' file
76 my %cat_1_0 = ( "GL_VERSION_1_0" => 1 );
77 my %cat_1_1 = ( %cat_1_0, "GL_VERSION_1_1" => 1 );
78 my %cat_1_2 = ( %cat_1_1, "GL_VERSION_1_2" => 1 );
79 my %cat_1_3 = ( %cat_1_2, "GL_VERSION_1_3" => 1 );
80 my %cat_1_4 = ( %cat_1_3, "GL_VERSION_1_4" => 1 );
81 my %cat_1_5 = ( %cat_1_4, "GL_VERSION_1_5" => 1 );
83 my %norm_categories = ();
86 # This hash table gives the conversion between OpenGL types and
87 # the .spec type and debug format
91 "GLbitfield" => [ "long", "%d" ],
92 "GLboolean" => [ "long", "%d" ],
93 "GLbyte" => [ "long", "%d" ],
94 "GLchar" => [ "long", "%c" ],
95 "GLcharARB" => [ "long", "%c" ],
96 "GLclampd" => [ "double", "%f" ],
97 "GLclampf" => [ "float", "%f" ],
98 "GLclampx" => [ "long", "%d" ],
99 "GLdouble" => [ "double", "%f" ],
100 "GLeglClientBufferEXT" => [ "ptr", "%p" ],
101 "GLeglImageOES" => [ "ptr", "%p" ],
102 "GLenum" => [ "long", "%d" ],
103 "GLfixed" => [ "long", "%d" ],
104 "GLfloat" => [ "float", "%f" ],
105 "GLhalfNV" => [ "long", "%d" ],
106 "GLhandleARB" => [ "long", "%d" ],
107 "GLint" => [ "long", "%d" ],
108 "GLint64" => [ "int64", "wine_dbgstr_longlong(%s)" ],
109 "GLint64EXT" => [ "int64", "wine_dbgstr_longlong(%s)" ],
110 "GLintptr" => [ "long", "%ld" ],
111 "GLintptrARB" => [ "long", "%ld" ],
112 "GLshort" => [ "long", "%d" ],
113 "GLsizei" => [ "long", "%d" ],
114 "GLsizeiptr" => [ "long", "%ld" ],
115 "GLsizeiptrARB" => [ "long", "%ld" ],
116 "GLstring" => [ "str", "wine_dbgstr_a(%s)" ],
117 "GLsync" => [ "ptr", "%p" ],
118 "GLubyte" => [ "long", "%d" ],
119 "GLuint" => [ "long", "%d" ],
120 "GLuint64" => [ "int64", "wine_dbgstr_longlong(%s)" ],
121 "GLuint64EXT" => [ "int64", "wine_dbgstr_longlong(%s)" ],
122 "GLushort" => [ "long", "%d" ],
123 "GLvdpauSurfaceNV" => [ "long", "%ld" ],
124 "GLDEBUGPROC" => [ "ptr", "%p" ],
125 "GLDEBUGPROCARB" => [ "ptr", "%p" ],
126 "GLDEBUGPROCAMD" => [ "ptr", "%p" ],
127 "GLDEBUGPROCKHR" => [ "ptr", "%p" ],
128 "GLVULKANPROCNV" => [ "ptr", "%p" ],
129 "HDC" => [ "long", "%p" ],
130 "HGLRC" => [ "long", "%p" ],
131 "HPBUFFERARB" => [ "long", "%p" ],
132 "HENHMETAFILE" => [ "long", "%p" ],
133 "LPGLYPHMETRICSFLOAT" => [ "ptr", "%p" ],
134 "LPCSTR" => [ "str", "wine_dbgstr_a(%s)" ],
135 "UINT" => [ "long", "%u" ],
136 "DWORD" => [ "long", "%u" ],
137 "BOOL" => [ "long", "%u" ],
138 "FLOAT" => [ "float", "%f" ],
143 "HGLRC" => "struct wgl_context *",
144 "HPBUFFERARB" => "struct wgl_pbuffer *",
147 # Used to convert some types
152 my $ret = $arg->textContent();
153 my @type = $arg->findnodes("./ptype");
157 my $type = $type[0]->textContent();
158 $ret =~ s/$type/$remap_types{$type}/ if defined $remap_types{$type};
164 # This functions generates the thunk for a given function.
166 sub GenerateThunk
($$$)
168 my ($name, $func_ref, $prefix) = @_;
170 my $trace_call_arg = "";
173 my $ret = get_func_proto
( "%s WINAPI %s(%s)", $name, $func_ref, 0 );
174 foreach my $arg (@
{$func_ref->[1]}) {
175 my $ptype = get_arg_type
( $arg );
176 my $pname = get_arg_name
( $arg );
177 my $param = $arg->textContent();
178 $call_arg .= " " . $pname . ",";
179 if ($param =~ /\*/ || $param =~ /\[/) {
180 $trace_arg .= ", %p";
181 $trace_call_arg .= ", " . $pname;
182 } elsif (defined $arg_types{$ptype}) {
183 my $format = ${$arg_types{$ptype}}[1];
184 $trace_arg .= ", " . ($format =~ /^%/ ?
$format : "%s");
185 $trace_call_arg .= ", " . sprintf $format =~ /^%/ ?
"%s" : $format, $pname;
187 else { printf "Unknown type %s in %s\n", $param, $name; }
189 $call_arg =~ s/,$/ /;
190 $trace_arg =~ s/^, //;
192 # special case for functions that take an HDC as first parameter
193 if (@
{$func_ref->[1]} && get_arg_type
( ${$func_ref->[1]}[0] ) eq "HDC")
195 my $pname = get_arg_name
( ${$func_ref->[1]}[0] );
196 $ret .= " const struct opengl_funcs *funcs = get_dc_funcs( $pname );\n";
197 $ret .= " TRACE( \"($trace_arg)\\n\"$trace_call_arg );\n" if $gen_traces;
198 $ret .= " if (!funcs || !funcs->$prefix.p_$name) return";
199 $ret .= " 0" unless is_void_func
( $func_ref );
204 $ret .= " const struct opengl_funcs *funcs = NtCurrentTeb()->glTable;\n";
205 $ret .= " TRACE( \"($trace_arg)\\n\"$trace_call_arg );\n" if $gen_traces;
208 $ret .= "return " unless is_void_func
( $func_ref );
209 $ret .= "funcs->$prefix.p_$name($call_arg);\n";
214 sub generate_null_func
($$)
216 my ($name, $func_ref) = @_;
219 return "" if $name eq "glDebugEntry";
221 $ret = get_func_proto
( "static %s null_%s(%s)", $name, $func_ref, 1 );
223 if ($name eq "glGetError")
225 $ret .= " return GL_INVALID_OPERATION;";
227 elsif (!is_void_func
( $func_ref ))
229 $ret .= " return 0;";
235 sub generate_spec_entry
($$)
237 my ($name, $func) = @_;
239 foreach my $arg (@
{$func->[1]})
241 my $ptype = get_arg_type
( $arg );
242 my $param = $arg->textContent();
243 if ($param =~ /[[*]/) {
245 } elsif (defined($arg_types{$ptype})) {
246 $args .= "$@$arg_types{$ptype}[0] ";
248 die "No conversion for func $name type $param\n";
251 $args = substr($args,1,-1);
252 return "@ stdcall $_($args)";
258 return 0 if @
{$func->[0]->findnodes("./ptype")};
259 return $func->[0]->textContent() eq "void ";
265 my @type = $p->findnodes("./ptype");
266 return @type ?
$type[0]->textContent() : "GLint";
272 my @name = $p->findnodes("./name");
273 return $name[0]->textContent();
276 sub get_func_proto
($$$$)
278 my ($format, $name, $func, $convert_args) = @_;
279 die "unknown func $name" unless defined $func->[0];
280 my $proto = $convert_args ? ConvertType
( $func->[0] ) : $func->[0]->textContent();
283 foreach my $arg (@
{$func->[1]})
285 $args .= " " . ($convert_args ? ConvertType
( $arg ) : $arg->textContent()) . ",";
289 return sprintf $format, $proto, $name, $args;
293 # Extract and checks the number of arguments
298 die "Usage: $name0 [version]\n";
300 my $version = $ARGV[0] || "1.1";
301 if ($version eq "1.0") {
302 %norm_categories = %cat_1_0;
303 } elsif ($version eq "1.1") {
304 %norm_categories = %cat_1_1;
305 } elsif ($version eq "1.2") {
306 %norm_categories = %cat_1_2;
307 } elsif ($version eq "1.3") {
308 %norm_categories = %cat_1_3;
309 } elsif ($version eq "1.4") {
310 %norm_categories = %cat_1_4;
311 } elsif ($version eq "1.5") {
312 %norm_categories = %cat_1_5;
314 die "Incorrect OpenGL version.\n";
318 # Fetch the registry files
320 -f
"gl.xml" || system "wget https://raw.github.com/KhronosGroup/OpenGL-Registry/master/xml/gl.xml" || die "cannot download gl.xml";
321 -f
"wgl.xml" || system "wget https://raw.github.com/KhronosGroup/OpenGL-Registry/master/xml/wgl.xml" || die "cannot download wgl.xml";
325 # Then, create the list of all OpenGL functions using the registry
326 # files. This will create two hash-tables, one with all the function
327 # whose category matches the one listed in '@norm_categories', the other
328 # with all other functions.
330 # An element of the hash table is a reference to an array with these
333 # - XML node of the function prototype
335 # - reference to an array of XML nodes giving the list of arguments (an empty array
336 # for a 'void' function).
342 my (%gl_types, @gl_types); # also use an array to preserve declaration order
344 my %supported_wgl_functions =
346 "wglCopyContext" => 1,
347 "wglCreateContext" => 1,
348 "wglDeleteContext" => 1,
349 "wglDescribePixelFormat" => 1,
350 "wglGetPixelFormat" => 1,
351 "wglGetProcAddress" => 1,
352 "wglMakeCurrent" => 1,
353 "wglSetPixelFormat" => 1,
354 "wglShareLists" => 1,
355 "wglSwapBuffers" => 1,
358 my %remapped_wgl_functions =
360 "ChoosePixelFormat" => "wglChoosePixelFormat",
361 "DescribePixelFormat" => "wglDescribePixelFormat",
362 "GetPixelFormat" => "wglGetPixelFormat",
363 "GetEnhMetaFilePixelFormat" => 0,
364 "SetPixelFormat" => "wglSetPixelFormat",
365 "SwapBuffers" => "wglSwapBuffers",
366 "wglUseFontBitmaps" => 0,
367 "wglUseFontOutlines" => 0,
370 my %supported_wgl_extensions =
372 "WGL_ARB_create_context" => 1,
373 "WGL_ARB_create_context_no_error" => 1,
374 "WGL_ARB_create_context_profile" => 1,
375 "WGL_ARB_extensions_string" => 1,
376 "WGL_ARB_make_current_read" => 1,
377 "WGL_ARB_multisample" => 1,
378 "WGL_ARB_pbuffer" => 1,
379 "WGL_ARB_pixel_format" => 1,
380 "WGL_ARB_framebuffer_sRGB" => 1,
381 "WGL_ARB_pixel_format_float" => 1,
382 "WGL_ARB_render_texture" => 1,
383 "WGL_ATI_pixel_format_float" => 1,
384 "WGL_EXT_create_context_es2_profile" => 1,
385 "WGL_EXT_extensions_string" => 1,
386 "WGL_EXT_framebuffer_sRGB" => 1,
387 "WGL_EXT_pixel_format_packed_float" => 1,
388 "WGL_EXT_swap_control" => 1,
389 "WGL_EXT_swap_control_tear" => 1,
390 "WGL_NV_float_buffer" => 1,
391 "WGL_NV_render_depth_texture" => 1,
392 "WGL_NV_render_texture_rectangle" => 1,
393 "WGL_NV_vertex_array_range" => 1,
394 "WGL_WINE_pixel_format_passthrough" => 1,
395 "WGL_WINE_query_renderer" => 1,
403 sub is_supported_api
($)
406 foreach my $i (split /\|/, $api)
408 return 1 if defined $supported_apis{$i};
413 # some functions need a hand-written wrapper
414 sub needs_wrapper
($$)
419 "glDebugMessageCallback" => 1,
420 "glDebugMessageCallbackAMD" => 1,
421 "glDebugMessageCallbackARB" => 1,
422 "glGetIntegerv" => 1,
425 "wglGetCurrentReadDCARB" => 1,
427 my ($name, $func) = @_;
429 return 1 if defined $funcs{$name};
430 # check if return value needs special handling
431 (my $type = $func->[0]->textContent()) =~ s/ $//;
432 return 1 if defined $remap_types{$type};
433 # check if one of the arguments needs special handling
434 foreach (@
{$func->[1]})
436 $type = get_arg_type
( $_ );
437 return 1 if defined $remap_types{$type};
445 my $xml = XML
::LibXML
->load_xml( location
=> $file );
450 foreach my $command ($xml->findnodes("/registry/commands/command"))
452 my $proto = @
{$command->findnodes("./proto")}[0];
453 my $name = @
{$command->findnodes("./proto/name")}[0];
454 $proto->removeChild( $name );
455 my @params = $command->findnodes("./param");
456 $functions{$name->textContent()} = [ $proto, \
@params ];
460 foreach my $enum ($xml->findnodes("/registry/enums/enum"))
462 $enums{$enum->{name
}} = $enum->{value
};
466 foreach my $type ($xml->findnodes("/registry/types/type"))
468 next if $type->{api
};
469 my $name = @
{$type->findnodes("./name")}[0];
471 $name = $name->textContent;
472 push @gl_types, $name unless $gl_types{$name};
473 $gl_types{$name} = $type;
476 # generate norm functions
477 foreach my $feature ($xml->findnodes("/registry/feature"))
479 if ($feature->{api
} eq "wgl")
481 foreach my $cmd ($feature->findnodes("./require/command"))
483 my $name = $cmd->{name
};
484 if (defined $remapped_wgl_functions{$name})
486 next unless $remapped_wgl_functions{$name};
487 $name = $remapped_wgl_functions{$name};
489 $wgl_functions{$name} = $functions{$cmd->{name
}};
492 next unless defined $norm_categories{$feature->{name
}};
493 foreach my $cmd ($feature->findnodes("./require/command"))
495 $norm_functions{$cmd->{name
}} = $functions{$cmd->{name
}};
497 foreach my $enum ($feature->findnodes("./require/enum"))
499 $gl_enums{$enum->{name
}} = $enums{$enum->{name
}};
503 # generate extension functions from norm functions, if they are newer than the category
504 foreach my $feature ($xml->findnodes("/registry/feature"))
506 next if defined $norm_categories{$feature->{name
}};
507 next unless is_supported_api
( $feature->{api
} );
508 foreach my $cmd ($feature->findnodes("./require/command"))
510 my $name = $cmd->{name
};
511 next if $norm_functions{$name} || $ext_functions{$name};
512 $ext_functions{$name} = [ $functions{$name}[0], $functions{$name}[1], [ $feature->{name
} ] ];
514 foreach my $enum ($feature->findnodes("./require/enum"))
516 $gl_enums{$enum->{name
}} = $enums{$enum->{name
}};
520 # generate extension functions
521 foreach my $ext ($xml->findnodes("/registry/extensions/extension"))
523 if ($ext->{supported
} eq "wgl")
525 next unless defined $supported_wgl_extensions{$ext->{name
}};
526 foreach my $cmd ($ext->findnodes("./require/command"))
528 my $name = $cmd->{name
};
529 $ext_functions{$name} = [ $functions{$name}[0], $functions{$name}[1], [ $ext->{name
} ] ];
531 foreach my $enum ($ext->findnodes("./require/enum"))
533 $gl_enums{$enum->{name
}} = $enums{$enum->{name
}};
537 next unless is_supported_api
( $ext->{supported
} );
538 foreach my $req ($ext->findnodes("./require"))
540 next unless !$req->{api
} || $req->{api
} eq "gl";
541 foreach my $cmd ($req->findnodes("./command"))
543 my $name = $cmd->{name
};
544 next if $norm_functions{$name};
545 if (!$ext_functions{$name})
547 $ext_functions{$name} = [ $functions{$name}[0], $functions{$name}[1], [ $ext->{name
} ] ];
551 push @
{$ext_functions{$name}->[2]}, $ext->{name
};
555 foreach my $enum ($ext->findnodes("./require/enum"))
557 $gl_enums{$enum->{name
}} = $enums{$enum->{name
}};
562 parse_file
( "gl.xml" );
563 parse_file
( "wgl.xml" );
564 parse_file
( "winegl.xml" );
567 # Get the current wgl_driver.h version
570 open HEADER
, "<$wgl_driver_file" or die "cannot open $wgl_driver_file";
573 next unless /^#define WINE_WGL_DRIVER_VERSION (\d+)/;
580 # Generate the wgl_driver.h file
582 open HEADER
, ">$wgl_driver_file" or die "cannot create $wgl_driver_file";
583 print HEADER
"/* Automatically generated from http://www.opengl.org/registry files; DO NOT EDIT! */\n\n";
584 print HEADER
"#ifndef __WINE_WGL_DRIVER_H\n";
585 print HEADER
"#define __WINE_WGL_DRIVER_H\n\n";
586 print HEADER
"#ifndef WINE_GLAPI\n";
587 print HEADER
"#define WINE_GLAPI\n";
588 print HEADER
"#endif\n\n";
590 printf HEADER
"#define WINE_WGL_DRIVER_VERSION %u\n\n", $wgl_version + 1;
592 print HEADER
"struct wgl_context;\n";
593 print HEADER
"struct wgl_pbuffer;\n\n";
595 print HEADER
"struct opengl_funcs\n{\n";
596 print HEADER
" struct\n {\n";
597 foreach (sort keys %wgl_functions)
599 next unless defined $supported_wgl_functions{$_};
600 print HEADER get_func_proto
(" %-10s (WINE_GLAPI *p_%s)(%s);\n", $_, $wgl_functions{$_}, 1);
602 print HEADER
" } wgl;\n\n";
604 print HEADER
" struct\n {\n";
605 foreach (sort keys %norm_functions)
607 next if $_ eq "glDebugEntry";
608 print HEADER get_func_proto
(" %-10s (WINE_GLAPI *p_%s)(%s);\n", $_, $norm_functions{$_}, 1);
610 print HEADER
" } gl;\n\n";
612 print HEADER
" struct\n {\n";
613 foreach (sort keys %ext_functions)
615 print HEADER get_func_proto
(" %-10s (WINE_GLAPI *p_%s)(%s);\n", $_, $ext_functions{$_}, 1);
617 print HEADER
" } ext;\n";
618 print HEADER
"};\n\n";
620 print HEADER
"#define ALL_WGL_FUNCS";
621 foreach (sort keys %norm_functions)
623 next if $_ eq "glDebugEntry";
624 printf HEADER
" \\\n USE_GL_FUNC(\%s)", $_;
628 print HEADER
"extern struct opengl_funcs * CDECL __wine_get_wgl_driver( HDC hdc, UINT version );\n";
629 print HEADER
"extern BOOL CDECL __wine_set_pixel_format( HWND hwnd, int format );\n\n";
630 print HEADER
"#endif /* __WINE_WGL_DRIVER_H */\n";
634 # Generate the wgl.h file
636 open HEADER
, ">$wgl_file" or die "cannot create $wgl_file";
637 print HEADER
"/* Automatically generated from http://www.opengl.org/registry files; DO NOT EDIT! */\n\n";
638 print HEADER
"#ifndef __WINE_WGL_H\n";
639 print HEADER
"#define __WINE_WGL_H\n\n";
641 print HEADER
"#ifndef GLAPIENTRY\n";
642 print HEADER
"#define GLAPIENTRY __stdcall\n";
643 print HEADER
"#endif\n\n";
647 printf HEADER
$gl_types{$_}->textContent() . "\n";
652 foreach (keys %gl_enums) { $maxlen = length($_) if length($_) > $maxlen; }
653 foreach (sort keys %gl_enums)
655 printf HEADER
"#define %-*s %s\n", $maxlen, $_, $gl_enums{$_};
659 foreach (sort keys %norm_functions)
661 printf HEADER
"%s;\n", get_func_proto
("%-10s GLAPIENTRY %s(%s)", $_, $norm_functions{$_}, 0);
664 print HEADER
"\n#endif /* __WINE_WGL_H */\n";
668 # Now, generate the output files. First, the spec file.
670 open(SPEC
, ">$spec_file") or die "cannot create $spec_file";
672 foreach (sort keys %norm_functions) {
673 printf SPEC
"%s\n", generate_spec_entry
( $_, $norm_functions{$_} );
675 foreach (sort keys %wgl_functions) {
676 printf SPEC
"%s\n", generate_spec_entry
( $_, $wgl_functions{$_} );
682 "/* Automatically generated from http://www.opengl.org/registry files; DO NOT EDIT! */\n\n" .
683 "#include \"config.h\"\n" .
684 "#include <stdarg.h>\n" .
685 "#include \"winternl.h\"\n" .
686 "#include \"opengl_ext.h\"\n" .
687 "#include \"wine/debug.h\"\n\n";
689 $file_header .= "WINE_DEFAULT_DEBUG_CHANNEL(opengl);\n\n" if $gen_traces;
692 # After the spec file, the opengl_norm.c file
694 open(NORM
, ">$norm_file") or die "cannot create $norm_file";
695 print NORM
$file_header;
697 foreach (sort keys %norm_functions) {
698 next if needs_wrapper
( $_, $norm_functions{$_} );
699 print NORM GenerateThunk
($_, $norm_functions{$_}, "gl");
702 foreach (sort keys %wgl_functions) {
703 next unless defined $supported_wgl_functions{$_};
704 print NORM generate_null_func
($_, $wgl_functions{$_});
706 foreach (sort keys %norm_functions) {
707 print NORM generate_null_func
($_, $norm_functions{$_});
709 foreach (sort keys %ext_functions) {
710 print NORM generate_null_func
($_, $ext_functions{$_});
713 print NORM
"\nstruct opengl_funcs null_opengl_funcs =\n{\n {\n";
714 foreach (sort keys %wgl_functions)
716 next unless defined $supported_wgl_functions{$_};
717 print NORM
" null_$_,\n";
719 print NORM
" },\n {\n";
720 foreach (sort keys %norm_functions) { print NORM
" null_$_,\n" unless $_ eq "glDebugEntry"; }
721 print NORM
" },\n {\n";
722 foreach (sort keys %ext_functions) { print NORM
" null_$_,\n"; }
723 print NORM
" }\n};\n";
728 # Finally, more complex, the opengl_ext.c file
730 open(EXT
, ">$ext_file") or die "cannot create $ext_file";
731 print EXT
$file_header;
733 # The thunks themselves....
734 my $count = keys %ext_functions;
736 print EXT
"const int extension_registry_size = $count;\n\n";
737 foreach (sort keys %ext_functions) {
738 if (needs_wrapper
( $_, $ext_functions{$_} ))
740 $wrappers .= get_func_proto
("extern %s WINAPI %s(%s) DECLSPEC_HIDDEN;\n", $_, $ext_functions{$_}, 0);
744 print EXT
"static " . GenerateThunk
($_, $ext_functions{$_}, "ext");
749 # Then the table giving the string <-> function correspondence */
750 print EXT
"\nconst OpenGL_extension extension_registry[$count] = {\n";
752 foreach (sort keys %ext_functions) {
753 my $func_ref = $ext_functions{$_};
754 printf EXT
" { \"%s\", \"%s\", %s }", $_, join(" ", sort @
{$func_ref->[2]}), $_;
755 if ($i != $count-1) {