2003-07-06 15:01:13 +00:00
|
|
|
#!/usr/bin/perl
|
2004-02-01 20:03:26 +00:00
|
|
|
##
|
|
|
|
## Copyright (C) 2004, 2003 Marcelo E. Magallon <mmagallo[at]debian org>
|
|
|
|
## Copyright (C) 2004, 2003 Milan Ikits <milan ikits[at]ieee org>
|
|
|
|
##
|
|
|
|
## This program is distributed under the terms and conditions of the GNU
|
|
|
|
## General Public License Version 2 as published by the Free Software
|
|
|
|
## Foundation or, at your option, any later version.
|
2003-07-06 15:01:13 +00:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
do 'bin/make.pl';
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# function pointer definition
|
|
|
|
sub make_init_call($%)
|
|
|
|
{
|
|
|
|
my $name = prefixname($_[0]);
|
2004-02-01 18:13:05 +00:00
|
|
|
return " r = r || (ctx->" . $name . " = (PFN" . (uc $_[0]) . "PROC)glewGetProcAddress(\"" . $name . "\")) == NULL;";
|
2003-07-06 15:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
my @extlist = ();
|
|
|
|
my %extensions = ();
|
|
|
|
|
|
|
|
if (@ARGV)
|
|
|
|
{
|
|
|
|
@extlist = @ARGV;
|
|
|
|
} else {
|
|
|
|
local $/;
|
|
|
|
@extlist = split "\n", (<>);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach my $ext (sort @extlist)
|
|
|
|
{
|
2003-07-08 16:43:30 +00:00
|
|
|
my ($extname, $exturl, $types, $tokens, $functions, $exacts) = parse_ext($ext);
|
2003-07-06 15:01:13 +00:00
|
|
|
|
|
|
|
my $extvar = $extname;
|
|
|
|
$extvar =~ s/GL(X*)_/GL$1EW_/;
|
|
|
|
|
2003-07-08 17:56:49 +00:00
|
|
|
my $extpre = $extname;
|
|
|
|
$extpre =~ s/^(W?)GL(X?).*$/\l$1gl\l$2ew/;
|
2004-02-01 18:13:05 +00:00
|
|
|
|
|
|
|
my $pextvar = prefix_varname($extvar);
|
|
|
|
|
2003-07-06 15:01:13 +00:00
|
|
|
print "#ifdef $extname\n";
|
2004-02-01 18:13:05 +00:00
|
|
|
print " ctx->" . $pextvar . "= " . $extpre . "GetExtension((const GLubyte*)\"$extname\");\n";
|
2003-07-06 15:01:13 +00:00
|
|
|
if (keys %$functions)
|
|
|
|
{
|
2003-09-12 04:46:10 +00:00
|
|
|
if ($extname =~ /WGL_.*/)
|
|
|
|
{
|
2004-02-01 18:13:05 +00:00
|
|
|
print " if (glewExperimental || ctx->" . $pextvar . "|| crippled) ctx->" . $pextvar . "= !_glewInit_$extname(ctx);\n";
|
2003-09-12 04:46:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2004-02-01 18:13:05 +00:00
|
|
|
print " if (glewExperimental || ctx->" . $pextvar . ") ctx->" . $pextvar . " = !_glewInit_$extname(ctx);\n";
|
2003-09-12 04:46:10 +00:00
|
|
|
}
|
2003-07-06 15:01:13 +00:00
|
|
|
}
|
|
|
|
print "#endif /* $extname */\n";
|
|
|
|
}
|