2003-07-06 15:01:13 +00:00
|
|
|
#!/usr/bin/perl
|
2004-02-01 20:03:26 +00:00
|
|
|
##
|
2007-12-28 01:47:25 +00:00
|
|
|
## Copyright (C) 2002-2008, Marcelo E. Magallon <mmagallo[]debian org>
|
|
|
|
## Copyright (C) 2002-2008, Milan Ikits <milan ikits[]ieee org>
|
2004-02-01 20:03:26 +00:00
|
|
|
##
|
|
|
|
## 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';
|
|
|
|
|
2004-02-19 04:37:07 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
2003-07-06 15:01:13 +00:00
|
|
|
|
|
|
|
# function pointer definition
|
|
|
|
sub make_pfn_def_init($%)
|
|
|
|
{
|
2004-02-19 04:37:07 +00:00
|
|
|
#my $name = prefixname($_[0]);
|
2015-02-05 08:53:34 +00:00
|
|
|
my $condition = "";
|
|
|
|
if ($_[1]{deleted}) {
|
|
|
|
my $needop = 0;
|
|
|
|
|
|
|
|
for my $tok (split(/\s+/, $_[1]{deleted})) {
|
|
|
|
if ($tok eq "~") {
|
|
|
|
# ignore
|
|
|
|
} elsif ($tok eq '&&') {
|
|
|
|
$condition .= ' && ';
|
|
|
|
$needop = 0;
|
|
|
|
} elsif ($tok eq '||') {
|
|
|
|
$condition .= ') || (';
|
|
|
|
$needop = 0;
|
|
|
|
} else {
|
|
|
|
if ($needop) {
|
|
|
|
$condition .= ' && ';
|
|
|
|
}
|
2015-02-11 08:48:53 +00:00
|
|
|
if ($tok =~ /^!/) {
|
|
|
|
$condition .= '!';
|
|
|
|
$tok =~ s/^!//;
|
|
|
|
}
|
2015-02-05 08:53:34 +00:00
|
|
|
if ($tok =~ /^\d/) {
|
|
|
|
# GL Version
|
|
|
|
$tok =~ s/[.]/_/g;
|
|
|
|
$condition .= "GLEW_VERSION_${tok}";
|
|
|
|
} elsif ($tok eq "core") {
|
|
|
|
$condition .= "(context_profile & GL_CONTEXT_CORE_PROFILE_BIT)";
|
|
|
|
} elsif ($tok eq "forward") {
|
|
|
|
$condition .= "(context_flags & GL_CONTEXT_FLAG_FORWARD_COMPATIBLE_BIT)";
|
|
|
|
}
|
|
|
|
$needop = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$condition = "if( !(($condition)) ) ";
|
|
|
|
}
|
|
|
|
return " ${condition}r = ((" . $_[0] . " = (PFN" . (uc $_[0]) . "PROC)glewGetProcAddress((const GLubyte*)\"" . $_[0] . "\")) == NULL) || r;";
|
2003-07-06 15:01:13 +00:00
|
|
|
}
|
|
|
|
|
2015-08-29 22:55:10 +00:00
|
|
|
sub make_reuse_call($%)
|
|
|
|
{
|
2015-11-19 11:12:48 +00:00
|
|
|
return " r = _glewInit_" . $_[0] . "() || r;";
|
2015-08-29 22:55:10 +00:00
|
|
|
}
|
|
|
|
|
2004-02-19 04:37:07 +00:00
|
|
|
#-------------------------------------------------------------------------------
|
2003-07-06 15:01:13 +00:00
|
|
|
|
|
|
|
my @extlist = ();
|
|
|
|
my %extensions = ();
|
|
|
|
|
2004-02-01 18:13:05 +00:00
|
|
|
our $type = shift;
|
|
|
|
|
2003-07-06 15:01:13 +00:00
|
|
|
if (@ARGV)
|
|
|
|
{
|
|
|
|
@extlist = @ARGV;
|
2004-12-31 08:50:04 +00:00
|
|
|
|
|
|
|
foreach my $ext (sort @extlist)
|
|
|
|
{
|
2015-08-29 22:55:10 +00:00
|
|
|
my ($extname, $exturl, $extstring, $reuse, $types, $tokens, $functions, $exacts) =
|
2004-12-31 08:50:04 +00:00
|
|
|
parse_ext($ext);
|
|
|
|
|
|
|
|
#make_separator($extname);
|
|
|
|
my $extvar = $extname;
|
|
|
|
my $extvardef = $extname;
|
|
|
|
$extvar =~ s/GL(X*)_/GL$1EW_/;
|
2015-08-29 22:55:10 +00:00
|
|
|
if (keys %$functions or keys @$reuse)
|
2004-12-31 08:50:04 +00:00
|
|
|
{
|
2015-06-13 00:18:41 +00:00
|
|
|
print "#ifdef $extname\n\n";
|
2015-11-19 11:12:48 +00:00
|
|
|
print "static GLboolean _glewInit_$extname ()\n{\n GLboolean r = GL_FALSE;\n";
|
2015-08-29 22:55:10 +00:00
|
|
|
output_reuse($reuse, \&make_reuse_call);
|
2004-12-31 08:50:04 +00:00
|
|
|
output_decls($functions, \&make_pfn_def_init);
|
|
|
|
print "\n return r;\n}\n\n";
|
2015-06-13 00:18:41 +00:00
|
|
|
print "#endif /* $extname */\n\n";
|
2004-12-31 08:50:04 +00:00
|
|
|
}
|
|
|
|
}
|
2003-07-06 15:01:13 +00:00
|
|
|
}
|