Add 'use strict' and fix make_opengl accordingly.

Add function prototypes.
Write "$a $b" rather than the more complex $a . " " . $b.
Document which OpenGL spec files need to be downloaded.
Update the documentation of the list of supported OpenGL versions.
Tweak the usage so it always reports the right command name.
This commit is contained in:
Francois Gouget 2005-05-20 18:58:10 +00:00 committed by Alexandre Julliard
parent 8bf9171bf7
commit c887d0809c
1 changed files with 116 additions and 107 deletions

View File

@ -1,4 +1,5 @@
#!/usr/bin/perl -w #!/usr/bin/perl -w
use strict;
# This script is called thus : # This script is called thus :
# #
@ -10,9 +11,10 @@
# CVS_ROOT/projects/ogl-sample/main/doc/registry/specs. # CVS_ROOT/projects/ogl-sample/main/doc/registry/specs.
# You can find them on the web at the following URL : # You can find them on the web at the following URL :
# http://oss.sgi.com/cgi-bin/cvsweb.cgi/projects/ogl-sample/main/doc/registry/specs/ # http://oss.sgi.com/cgi-bin/cvsweb.cgi/projects/ogl-sample/main/doc/registry/specs/
# You will need gl.tm and gl.spec.
# #
# - opengl_version is the OpenGL version emulated by the library # - opengl_version is the OpenGL version emulated by the library
# (can be 1.0 to 1.2). # (can be 1.0 to 1.5).
# #
# This script generates the three following files : # This script generates the three following files :
# #
@ -54,21 +56,21 @@
# #
# Files to generate # Files to generate
# #
$spec_file = "opengl32.spec"; my $spec_file = "opengl32.spec";
$norm_file = "opengl_norm.c"; my $norm_file = "opengl_norm.c";
$ext_file = "opengl_ext.c"; my $ext_file = "opengl_ext.c";
# Set to 0 for removing the ENTER / LEAVE GL calls # Set to 0 for removing the ENTER / LEAVE GL calls
$gen_thread_safe = 1; my $gen_thread_safe = 1;
# Prefix used for the local variables # Prefix used for the local variables
$ext_prefix = "func_"; my $ext_prefix = "func_";
# If set to 1, generate TRACEs for each OpenGL function # If set to 1, generate TRACEs for each OpenGL function
$gen_traces = 1; my $gen_traces = 1;
# #
# List of categories to put in the 'opengl_norm.c' file # List of categories to put in the 'opengl_norm.c' file
# #
%cat_1_0 = ( "display-list" => 1, my %cat_1_0 = ( "display-list" => 1,
"drawing" => 1, "drawing" => 1,
"drawing-control" => 1, "drawing-control" => 1,
"feedback" => 1, "feedback" => 1,
@ -79,24 +81,24 @@ $gen_traces = 1;
"pixel-rw" => 1, "pixel-rw" => 1,
"state-req" => 1, "state-req" => 1,
"xform" => 1 ); "xform" => 1 );
%cat_1_1 = ( %cat_1_0, my %cat_1_1 = ( %cat_1_0,
"1_1" => 1 ); "1_1" => 1 );
%cat_1_2 = ( %cat_1_1, my %cat_1_2 = ( %cat_1_1,
"VERSION_1_2" => 1 ); "VERSION_1_2" => 1 );
%cat_1_3 = ( %cat_1_2, my %cat_1_3 = ( %cat_1_2,
"VERSION_1_3" => 1 ); "VERSION_1_3" => 1 );
%cat_1_4 = ( %cat_1_3, my %cat_1_4 = ( %cat_1_3,
"VERSION_1_4" => 1 ); "VERSION_1_4" => 1 );
%cat_1_5 = ( %cat_1_4, my %cat_1_5 = ( %cat_1_4,
"VERSION_1_5" => 1 ); "VERSION_1_5" => 1 );
%norm_categories = (); my %norm_categories = ();
# #
# This hash table gives the conversion between OpenGL types and what # This hash table gives the conversion between OpenGL types and what
# is used by the TRACE printfs # is used by the TRACE printfs
# #
%debug_conv = my %debug_conv =
("GLbitfield" => "%d", ("GLbitfield" => "%d",
"GLboolean" => "%d", "GLboolean" => "%d",
"GLbyte" => "%d", "GLbyte" => "%d",
@ -126,7 +128,7 @@ $gen_traces = 1;
# This hash table gives the conversion between OpenGL types and what # This hash table gives the conversion between OpenGL types and what
# is used in the .spec file # is used in the .spec file
# #
%arg_conv = my %arg_conv =
("GLbitfield" => [ "long", 4 ], ("GLbitfield" => [ "long", 4 ],
"GLboolean" => [ "long", 4 ], "GLboolean" => [ "long", 4 ],
"GLbyte" => [ "long", 4 ], "GLbyte" => [ "long", 4 ],
@ -155,10 +157,11 @@ $gen_traces = 1;
# #
# Used to convert some types # Used to convert some types
# #
sub ConvertType { sub ConvertType($)
{
my ($type) = @_; my ($type) = @_;
%hash = ( "GLstring" => "const GLubyte *", my %hash = ( "GLstring" => "const GLubyte *",
"GLintptrARB" => "ptrdiff_t", "GLintptrARB" => "ptrdiff_t",
"GLsizeiptrARB" => "ptrdiff_t", "GLsizeiptrARB" => "ptrdiff_t",
"GLintptr" => "ptrdiff_t", "GLintptr" => "ptrdiff_t",
@ -167,9 +170,9 @@ sub ConvertType {
"GLcharARB" => "char", "GLcharARB" => "char",
"GLhalfNV" => "unsigned short" ); "GLhalfNV" => "unsigned short" );
foreach $org (reverse(sort(keys %hash))) { foreach my $org (reverse sort keys %hash) {
if ($type =~ /$org/) { if ($type =~ /$org/) {
($before, $after) = ($type =~ /^(.*)$org(.*)$/); my ($before, $after) = ($type =~ /^(.*)$org(.*)$/);
return "$before$hash{$org}$after"; return "$before$hash{$org}$after";
} }
} }
@ -179,15 +182,16 @@ sub ConvertType {
# #
# Used to convert some variable names # Used to convert some variable names
# #
sub ConvertVarName { sub ConvertVarName($)
{
my ($type) = @_; my ($type) = @_;
%hash = ( "near" => "nearParam", my %hash = ( "near" => "nearParam",
"far" => "farParam" ); "far" => "farParam" );
foreach $org (keys %hash) { foreach my $org (keys %hash) {
if ($type =~ /$org/) { if ($type =~ /$org/) {
($before, $after) = ($type =~ /^(.*)$org(.*)$/); my ($before, $after) = ($type =~ /^(.*)$org(.*)$/);
return "$before$hash{$org}$after"; return "$before$hash{$org}$after";
} }
} }
@ -197,57 +201,58 @@ sub ConvertVarName {
# #
# This functions generates the thunk for a given function. # This functions generates the thunk for a given function.
# #
sub GenerateThunk { sub GenerateThunk($$$$)
{
my ($func_ref, $comment, $prefix, $thread_safe) = @_; my ($func_ref, $comment, $prefix, $thread_safe) = @_;
my ($ret) = (""); my $ret = "";
my ($call_arg) = (""); my $call_arg = "";
my ($trace_arg) = (""); my $trace_arg = "";
my ($wine_func_ref_name) = (""); my $wine_func_ref_name = "";
# If for opengl_norm.c, generate a nice heading otherwise Patrik won't be happy :-) # If for opengl_norm.c, generate a nice heading otherwise Patrik won't be happy :-)
# Patrik says: Well I would be even happier if a (OPENGL32.@) was added as well. Done. :-) # Patrik says: Well I would be even happier if a (OPENGL32.@) was added as well. Done. :-)
if ($comment eq 1) { if ($comment eq 1) {
$ret = $ret . "/***********************************************************************\n"; $ret = "$ret/***********************************************************************\n";
$ret = $ret . " * " . $func_ref->[0] . " (OPENGL32.@)\n"; $ret = "$ret * $func_ref->[0] (OPENGL32.\@)\n";
$ret = $ret . " */\n"; $ret = "$ret */\n";
} }
$ret = $ret . ConvertType($func_ref->[1]) . " WINAPI wine_" . $func_ref->[0] . "( "; $ret = $ret . ConvertType($func_ref->[1]) . " WINAPI wine_$func_ref->[0]( ";
for ($i = 0; $i <= $#{@{$func_ref->[2]}}; $i++) { for (my $i = 0; $i <= $#{@{$func_ref->[2]}}; $i++) {
## Quick debug code :-) ## Quick debug code :-)
## print $func_ref->[2]->[$i]->[1] . "\n"; ## print $func_ref->[2]->[$i]->[1] . "\n";
$type = $func_ref->[2]->[$i]->[0]; my $type = $func_ref->[2]->[$i]->[0];
$name = ConvertVarName($func_ref->[2]->[$i]->[1]); my $name = ConvertVarName($func_ref->[2]->[$i]->[1]);
$ret = $ret . ConvertType($type) . " $name"; $ret = $ret . ConvertType($type) . " $name";
$call_arg = $call_arg . "$name"; $call_arg = "$call_arg$name";
if ($type =~ /\*/) { if ($type =~ /\*/) {
$trace_arg = $trace_arg . "%p"; $trace_arg = "$trace_arg\%p";
} else { } else {
$trace_arg = $trace_arg . $debug_conv{$type}; $trace_arg = "$trace_arg$debug_conv{$type}";
} }
if ($i != $#{@{$func_ref->[2]}}) { if ($i != $#{@{$func_ref->[2]}}) {
$ret = $ret . ", "; $ret = "$ret, ";
$call_arg = $call_arg . ", "; $call_arg = "$call_arg, ";
$trace_arg = $trace_arg . ", "; $trace_arg = "$trace_arg, ";
} else { } else {
$ret = $ret . " "; $ret = "$ret ";
$call_arg = $call_arg . " "; $call_arg = "$call_arg ";
} }
} }
$ret = $ret . ") {\n"; $ret = "$ret) {\n";
if ($func_ref->[1] ne "void") { if ($func_ref->[1] ne "void") {
$ret = $ret . " " . ConvertType($func_ref->[1]) . " ret_value;\n"; $ret = "$ret " . ConvertType($func_ref->[1]) . " ret_value;\n";
} }
if ($gen_traces) { if ($gen_traces) {
$ret = $ret . " TRACE(\"(" . $trace_arg . ")\\n\""; $ret = "$ret TRACE(\"($trace_arg)\\n\"";
if ($trace_arg ne "") { if ($trace_arg ne "") {
$ret = $ret . ", " . $call_arg; $ret = "$ret, $call_arg";
} }
$ret = $ret . ");\n"; $ret = "$ret);\n";
} }
if ($thread_safe) { if ($thread_safe) {
$ret = $ret . " ENTER_GL();\n"; $ret = "$ret ENTER_GL();\n";
} }
$ret = $ret . " "; $ret = "$ret ";
if ($func_ref->[1] ne "void") { if ($func_ref->[1] ne "void") {
$ret = $ret . "ret_value = "; $ret = $ret . "ret_value = ";
} }
@ -255,27 +260,29 @@ sub GenerateThunk {
if ( $func_ref->[0] eq "glGetString" ) { if ( $func_ref->[0] eq "glGetString" ) {
$wine_func_ref_name = "internal_glGetString"; $wine_func_ref_name = "internal_glGetString";
} }
$ret = $ret . $prefix . $wine_func_ref_name . "( " . $call_arg . ");\n"; $ret = "$ret$prefix$wine_func_ref_name( $call_arg);\n";
if ($thread_safe) { if ($thread_safe) {
$ret = $ret . " LEAVE_GL();\n"; $ret = "$ret LEAVE_GL();\n";
} }
if ($func_ref->[1] ne "void") { if ($func_ref->[1] ne "void") {
$ret = $ret . " return ret_value;\n" $ret = "$ret return ret_value;\n"
} }
$ret = $ret . "}\n"; $ret = "$ret}\n";
# Return this string.... # Return this string....
$ret; return $ret;
} }
# #
# Extract and checks the number of arguments # Extract and checks the number of arguments
# #
if ($#ARGV != 1) { if (@ARGV != 2) {
die "Usage : make_opengl OpenGL_registry_location OpenGL_version.\n"; my $name0=$0;
$name0=~s%^.*/%%;
die "Usage: $name0 OpenGL_registry_location OpenGL_version\n";
} }
$registry_path = shift @ARGV; my $registry_path = shift @ARGV;
$version = shift @ARGV; my $version = shift @ARGV;
if ($version eq "1.0") { if ($version eq "1.0") {
%norm_categories = %cat_1_0; %norm_categories = %cat_1_0;
} elsif ($version eq "1.1") { } elsif ($version eq "1.1") {
@ -295,17 +302,17 @@ if ($version eq "1.0") {
# #
# Open the registry files # Open the registry files
# #
open(TYPES, $registry_path . "/gl.tm") || die "Could not open 'gl.tm'. Please check your path the the registry files.\n"; open(TYPES, "$registry_path/gl.tm") || die "Could not open 'gl.tm'. Please check your path the the registry files.\n";
open(REGISTRY, $registry_path . "/gl.spec") || die "Could not open 'gl.spec'. Please check your path the the registry files.\n"; open(REGISTRY, "$registry_path/gl.spec") || die "Could not open 'gl.spec'. Please check your path the the registry files.\n";
# #
# First, create a mapping between the pseudo types used in the spec file # First, create a mapping between the pseudo types used in the spec file
# and OpenGL types using the 'gl.tm' file. # and OpenGL types using the 'gl.tm' file.
# #
%pseudo_to_opengl = (); my %pseudo_to_opengl = ();
while ($line = <TYPES>) { while (my $line = <TYPES>) {
if ($line !~ /\w*\#/) { if ($line !~ /\w*\#/) {
($pseudo, $opengl) = ($line =~ /(\w*),\*,\*,\s*(.*),\*,\*/); my ($pseudo, $opengl) = ($line =~ /(\w*),\*,\*,\s*(.*),\*,\*/);
$pseudo_to_opengl{$pseudo} = $opengl; $pseudo_to_opengl{$pseudo} = $opengl;
} }
} }
@ -355,13 +362,14 @@ $pseudo_to_opengl{"IglooParameterSGIX"} = "GLint";
# [ "GLfloat", "ymove" ], # [ "GLfloat", "ymove" ],
# [ "GLubyte *", "bitmap"] ] ]; # [ "GLubyte *", "bitmap"] ] ];
# #
%norm_functions = (); my %norm_functions = ();
# #
# This stores various extensions NOT part of the GL extension registry but still # This stores various extensions NOT part of the GL extension registry but still
# implemented by most OpenGL libraries out there... # implemented by most OpenGL libraries out there...
# #
%ext_functions =
my %ext_functions =
( "glDeleteBufferRegion" => [ "glDeleteBufferRegion", "void", [ [ "GLenum", "region" ] ], "glDeleteBufferRegion" ], ( "glDeleteBufferRegion" => [ "glDeleteBufferRegion", "void", [ [ "GLenum", "region" ] ], "glDeleteBufferRegion" ],
"glReadBufferRegion" => [ "glReadBufferRegion", "void", [ [ "GLenum", "region" ], "glReadBufferRegion" => [ "glReadBufferRegion", "void", [ [ "GLenum", "region" ],
[ "GLint", "x" ], [ "GLint", "x" ],
@ -485,11 +493,12 @@ $pseudo_to_opengl{"IglooParameterSGIX"} = "GLint";
"glDeleteObjectBufferATI" => [ "glDeleteObjectBufferATI", "void", [ [ "GLuint", "buffer" ] ], "glDeleteObjectBufferATI" ] "glDeleteObjectBufferATI" => [ "glDeleteObjectBufferATI", "void", [ [ "GLuint", "buffer" ] ], "glDeleteObjectBufferATI" ]
); );
my @arg_names;
while ($line = <REGISTRY>) { my %arg_types;
while (my $line = <REGISTRY>) {
if ($line =~ /^\w*\(.*\)/) { if ($line =~ /^\w*\(.*\)/) {
# Get the function name (NOTE: the 'gl' prefix needs to be added later) # Get the function name (NOTE: the 'gl' prefix needs to be added later)
($funcname, $args) = ($line =~ /^(\w*)\((.*)\)/); my ($funcname, $args) = ($line =~ /^(\w*)\((.*)\)/);
# and the argument names # and the argument names
@arg_names = split /\s*,\s*/, $args; @arg_names = split /\s*,\s*/, $args;
@ -498,8 +507,8 @@ while ($line = <REGISTRY>) {
# - the argument types # - the argument types
# - the category the function belongs # - the category the function belongs
%arg_types = (); %arg_types = ();
$category = ""; my $category = "";
$ret_type = ""; my $ret_type = "";
while (1) { while (1) {
$line = <REGISTRY>; $line = <REGISTRY>;
unless (defined($line)) { unless (defined($line)) {
@ -518,8 +527,8 @@ while ($line = <REGISTRY>) {
} elsif ($line =~ /^\t*category/) { } elsif ($line =~ /^\t*category/) {
($category) = ($line =~ /^\t*category\s*([\w-]*)/); ($category) = ($line =~ /^\t*category\s*([\w-]*)/);
} elsif ($line =~ /^\t*param/) { } elsif ($line =~ /^\t*param/) {
($name, $base_type, $ext) = ($line =~ /\t*param\s*(\w*)\s*(\w*) (.*)/); my ($name, $base_type, $ext) = ($line =~ /\t*param\s*(\w*)\s*(\w*) (.*)/);
$ptr = 0; my $ptr = 0;
unless (defined($name)) { unless (defined($name)) {
chomp $line; chomp $line;
die "Broken spec file line $line in function $funcname\n"; die "Broken spec file line $line in function $funcname\n";
@ -536,13 +545,13 @@ while ($line = <REGISTRY>) {
die "Unsupported type : $line in function $funcname\n"; die "Unsupported type : $line in function $funcname\n";
} }
# Get the 'real' type and append a '*' in case of a pointer # Get the 'real' type and append a '*' in case of a pointer
$type = $pseudo_to_opengl{$base_type}; my $type = $pseudo_to_opengl{$base_type};
unless (defined($type)) { unless (defined($type)) {
chomp $line; chomp $line;
die "Unsupported return type in function $funcname for type $base_type (line $line)\n"; die "Unsupported return type in function $funcname for type $base_type (line $line)\n";
} }
if ($ptr) { if ($ptr) {
$type = $type . "*"; $type = "$type*";
} }
$arg_types{$name} = $type; $arg_types{$name} = $type;
@ -550,8 +559,8 @@ while ($line = <REGISTRY>) {
} }
# Now, build the argument reference # Now, build the argument reference
$arg_ref = [ ]; my $arg_ref = [ ];
for ($i = 0; $i <= $#arg_names; $i++) { for (my $i = 0; $i <= $#arg_names; $i++) {
unless (defined($arg_types{$arg_names[$i]})) { unless (defined($arg_types{$arg_names[$i]})) {
print "@arg_names\n"; print "@arg_names\n";
foreach (sort keys %arg_types) { foreach (sort keys %arg_types) {
@ -562,16 +571,16 @@ while ($line = <REGISTRY>) {
push @$arg_ref, [ $arg_types{$arg_names[$i]}, $arg_names[$i] ]; push @$arg_ref, [ $arg_types{$arg_names[$i]}, $arg_names[$i] ];
} }
$func_ref = [ "gl" . $funcname, my $func_ref = [ "gl$funcname",
$ret_type, $ret_type,
$arg_ref, $arg_ref,
"gl" . $funcname ]; "gl$funcname" ];
# Now, put in one or the other hash table # Now, put in one or the other hash table
if ($norm_categories{$category}) { if ($norm_categories{$category}) {
$norm_functions{"gl" . $funcname} = $func_ref; $norm_functions{"gl$funcname"} = $func_ref;
} else { } else {
$ext_functions{"gl" . $funcname} = $func_ref; $ext_functions{"gl$funcname"} = $func_ref;
} }
} }
} }
@ -585,7 +594,7 @@ close(REGISTRY);
# #
# Now, generate the output files. First, the spec file. # Now, generate the output files. First, the spec file.
# #
open(SPEC, ">" . $spec_file); open(SPEC, ">$spec_file");
print SPEC "@ stdcall wglCreateContext(long) print SPEC "@ stdcall wglCreateContext(long)
@ stdcall wglCreateLayerContext(long long) @ stdcall wglCreateLayerContext(long long)
@ -616,10 +625,10 @@ print SPEC "@ stdcall wglCreateContext(long)
"; ";
foreach (sort keys %norm_functions) { foreach (sort keys %norm_functions) {
$func_name = $norm_functions{$_}->[0]; my $func_name = $norm_functions{$_}->[0];
print SPEC "@ stdcall $func_name( "; print SPEC "@ stdcall $func_name( ";
for ($i = 0; $i <= $#{@{$norm_functions{$_}->[2]}}; $i++) { for (my $i = 0; $i <= $#{@{$norm_functions{$_}->[2]}}; $i++) {
$type = $norm_functions{$_}->[2]->[$i]->[0]; my $type = $norm_functions{$_}->[2]->[$i]->[0];
if ($type =~ /\*/) { if ($type =~ /\*/) {
print SPEC "ptr "; print SPEC "ptr ";
} elsif (defined($arg_conv{$type})) { } elsif (defined($arg_conv{$type})) {
@ -635,7 +644,7 @@ close(SPEC);
# #
# After the spec file, the opengl_norm.c file # After the spec file, the opengl_norm.c file
# #
open(NORM, ">" . $norm_file); open(NORM, ">$norm_file");
print NORM " print NORM "
/* Auto-generated file... Do not edit ! */ /* Auto-generated file... Do not edit ! */
@ -646,7 +655,7 @@ print NORM "
WINE_DEFAULT_DEBUG_CHANNEL(opengl); WINE_DEFAULT_DEBUG_CHANNEL(opengl);
"; ";
foreach (sort keys %norm_functions) { foreach (sort keys %norm_functions) {
$string = GenerateThunk($norm_functions{$_}, 1, "", $gen_thread_safe); my $string = GenerateThunk($norm_functions{$_}, 1, "", $gen_thread_safe);
print NORM "\n$string"; print NORM "\n$string";
} }
@ -655,7 +664,7 @@ close(NORM);
# #
# Finally, more complex, the opengl_ext.c file # Finally, more complex, the opengl_ext.c file
# #
open(EXT, ">" . $ext_file); open(EXT, ">$ext_file");
print EXT " print EXT "
/* Auto-generated file... Do not edit ! */ /* Auto-generated file... Do not edit ! */
@ -669,10 +678,10 @@ WINE_DEFAULT_DEBUG_CHANNEL(opengl);
# First, generate the function pointers # First, generate the function pointers
foreach (sort keys %ext_functions) { foreach (sort keys %ext_functions) {
$func_ref = $ext_functions{$_}; my $func_ref = $ext_functions{$_};
print EXT ConvertType($func_ref->[1]) . " (*" . $ext_prefix . $func_ref->[0] . ")( "; print EXT ConvertType($func_ref->[1]), " (*$ext_prefix$func_ref->[0])( ";
for ($i = 0; $i <= $#{@{$func_ref->[2]}}; $i++) { for (my $i = 0; $i <= $#{@{$func_ref->[2]}}; $i++) {
$type = ConvertType($func_ref->[2]->[$i]->[0]); my $type = ConvertType($func_ref->[2]->[$i]->[0]);
print EXT "$type"; print EXT "$type";
if ($i != $#{@{$func_ref->[2]}}) { if ($i != $#{@{$func_ref->[2]}}) {
print EXT ", "; print EXT ", ";
@ -686,10 +695,10 @@ foreach (sort keys %ext_functions) {
# Then, the function prototypes # Then, the function prototypes
print EXT "\n\n/* The function prototypes */\n"; print EXT "\n\n/* The function prototypes */\n";
foreach (sort keys %ext_functions) { foreach (sort keys %ext_functions) {
$func_ref = $ext_functions{$_}; my $func_ref = $ext_functions{$_};
print EXT ConvertType($func_ref->[1]) . " WINAPI " . "wine_" . $func_ref->[0] . "( "; print EXT ConvertType($func_ref->[1]), " WINAPI wine_$func_ref->[0]( ";
for ($i = 0; $i <= $#{@{$func_ref->[2]}}; $i++) { for (my $i = 0; $i <= $#{@{$func_ref->[2]}}; $i++) {
$type = ConvertType($func_ref->[2]->[$i]->[0]); my $type = ConvertType($func_ref->[2]->[$i]->[0]);
print EXT "$type"; print EXT "$type";
if ($i != $#{@{$func_ref->[2]}}) { if ($i != $#{@{$func_ref->[2]}}) {
print EXT ", "; print EXT ", ";
@ -702,13 +711,13 @@ foreach (sort keys %ext_functions) {
# Then the table giving the string <-> function correspondance */ # Then the table giving the string <-> function correspondance */
print EXT "\n\n/* The table giving the correspondance between names and functions */\n"; print EXT "\n\n/* The table giving the correspondance between names and functions */\n";
@tmp = keys %ext_functions; my @tmp = keys %ext_functions;
print EXT "int extension_registry_size = " . ($#tmp + 1) . ";\n"; print EXT "int extension_registry_size = ", ($#tmp + 1), ";\n";
print EXT "OpenGL_extension extension_registry[" . ($#tmp + 1) . "] = {\n"; print EXT "OpenGL_extension extension_registry[", ($#tmp + 1), "] = {\n";
$i = 0; my $i = 0;
foreach (sort keys %ext_functions) { foreach (sort keys %ext_functions) {
$func_ref = $ext_functions{$_}; my $func_ref = $ext_functions{$_};
print EXT " { \"" . $func_ref->[0] . "\", \"" . $func_ref->[3] . "\", (void *) wine_" . $func_ref->[0] . ", (void **) (&" . $ext_prefix . $func_ref->[0] . ") }"; print EXT " { \"$func_ref->[0]\", \"$func_ref->[3]\", (void *) wine_$func_ref->[0], (void **) (&$ext_prefix$func_ref->[0]) }";
if ($i != $#tmp) { if ($i != $#tmp) {
print EXT ","; print EXT ",";
} }
@ -720,7 +729,7 @@ print EXT "};\n";
# And, finally, the thunks themselves.... # And, finally, the thunks themselves....
print EXT "\n/* The thunks themselves....*/"; print EXT "\n/* The thunks themselves....*/";
foreach (sort keys %ext_functions) { foreach (sort keys %ext_functions) {
$string = GenerateThunk($ext_functions{$_}, 0, $ext_prefix, $gen_thread_safe); my $string = GenerateThunk($ext_functions{$_}, 0, $ext_prefix, $gen_thread_safe);
print EXT "\n$string"; print EXT "\n$string";
} }