2019-01-29 11:49:33 +00:00
|
|
|
#!/usr/bin/env perl
|
2004-12-29 05:43:35 +00:00
|
|
|
##
|
2019-01-28 10:55:10 +00:00
|
|
|
## Copyright (C) 2008-2019, Nigel Stewart <nigels[]users sourceforge net>
|
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-12-29 05:43:35 +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.
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2017-03-26 19:44:59 +00:00
|
|
|
use lib '.';
|
2004-12-29 05:43:35 +00:00
|
|
|
do 'bin/make.pl';
|
|
|
|
|
|
|
|
my @extlist = ();
|
|
|
|
my %extensions = ();
|
|
|
|
|
|
|
|
if (@ARGV)
|
|
|
|
{
|
|
|
|
@extlist = @ARGV;
|
|
|
|
|
2004-12-31 08:50:04 +00:00
|
|
|
my $curexttype = "";
|
|
|
|
foreach my $ext (sort @extlist)
|
2004-12-29 05:43:35 +00:00
|
|
|
{
|
2015-08-29 22:55:10 +00:00
|
|
|
my ($extname, $exturl, $extstring, $reuse, $types, $tokens, $functions, $exacts) = parse_ext($ext);
|
2004-12-31 08:50:04 +00:00
|
|
|
my $exttype = $extname;
|
2016-01-23 11:32:55 +00:00
|
|
|
$exttype =~ s/(W?E?)GL(X?)_(.*?_)(.*)/$3/;
|
2004-12-31 08:50:04 +00:00
|
|
|
my $extrem = $extname;
|
2016-01-23 11:32:55 +00:00
|
|
|
$extrem =~ s/(W?E?)GL(X?)_(.*?_)(.*)/$4/;
|
2004-12-31 08:50:04 +00:00
|
|
|
my $extvar = $extname;
|
2016-01-23 11:32:55 +00:00
|
|
|
$extvar =~ s/(W?E?)GL(X?)_/$1GL$2EW_/;
|
2004-12-31 08:50:04 +00:00
|
|
|
if(!($exttype =~ $curexttype))
|
2004-12-29 05:43:35 +00:00
|
|
|
{
|
2004-12-31 08:50:04 +00:00
|
|
|
if(length($curexttype) > 0)
|
|
|
|
{
|
2005-01-04 05:31:44 +00:00
|
|
|
print " }\n";
|
2004-12-31 08:50:04 +00:00
|
|
|
}
|
2005-01-04 05:31:44 +00:00
|
|
|
print " if (_glewStrSame2(&pos, &len, (const GLubyte*)\"$exttype\", " . length($exttype) . "))\n";
|
|
|
|
print " {\n";
|
2004-12-31 08:50:04 +00:00
|
|
|
$curexttype = $exttype;
|
2004-12-29 05:43:35 +00:00
|
|
|
}
|
2005-01-04 03:29:39 +00:00
|
|
|
print "#ifdef $extname\n";
|
2005-01-04 05:31:44 +00:00
|
|
|
print " if (_glewStrSame3(&pos, &len, (const GLubyte*)\"$extrem\", ". length($extrem) . "))\n";
|
|
|
|
#print " return $extvar;\n";
|
|
|
|
print " {\n";
|
|
|
|
print " ret = $extvar;\n";
|
|
|
|
print " continue;\n";
|
|
|
|
print " }\n";
|
2005-01-04 03:29:39 +00:00
|
|
|
print "#endif\n";
|
2004-12-29 05:43:35 +00:00
|
|
|
}
|
|
|
|
|
2005-01-04 05:31:44 +00:00
|
|
|
print " }\n";
|
2004-12-31 08:50:04 +00:00
|
|
|
}
|