mirror of
				https://github.com/nigels-com/glew.git
				synced 2025-11-03 22:04:10 +00:00 
			
		
		
		
	Subset patch/branch for GLEW as used for NVIDIA Cg Toolkit purposes
This commit is contained in:
		
							parent
							
								
									6737ca7a97
								
							
						
					
					
						commit
						000f2fb129
					
				@ -30,6 +30,8 @@ if (@ARGV)
 | 
			
		||||
	foreach my $ext (sort @extlist)
 | 
			
		||||
	{
 | 
			
		||||
		my ($extname, $exturl, $extstring, $types, $tokens, $functions, $exacts) = parse_ext($ext);
 | 
			
		||||
		print "\n#if !defined(GLEW_SUBSET) || defined(GLEW_SUBSET_$extname)\n";
 | 
			
		||||
		output_decls($functions, \&make_pfn_decl);
 | 
			
		||||
		print "\n#endif /* GLEW_SUBSET_$extname */\n";
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -55,12 +55,15 @@ if (@ARGV)
 | 
			
		||||
		my ($extname, $exturl, $extstring, $types, $tokens, $functions, $exacts) = parse_ext($ext);
 | 
			
		||||
 | 
			
		||||
		make_separator($extname);
 | 
			
		||||
		print "#ifndef $extname\n#define $extname 1\n";
 | 
			
		||||
		print "#ifndef $extname\n";
 | 
			
		||||
		output_tokens($tokens, \&make_define);
 | 
			
		||||
		output_types($types, \&make_type);
 | 
			
		||||
		output_exacts($exacts, \&make_exact);
 | 
			
		||||
		output_decls($functions, \&make_pfn_type);
 | 
			
		||||
		print "\n#if !defined(GLEW_SUBSET) || defined(GLEW_SUBSET_$extname)\n";
 | 
			
		||||
		print "#define $extname 1\n";
 | 
			
		||||
		output_decls($functions, \&make_pfn_alias);
 | 
			
		||||
		print "\n#endif /* GLEW_SUBSET_$extname */\n";
 | 
			
		||||
 | 
			
		||||
		my $extvar = $extname;
 | 
			
		||||
		$extvar =~ s/GL(X*)_/GL$1EW_/;
 | 
			
		||||
 | 
			
		||||
@ -31,6 +31,8 @@ if (@ARGV)
 | 
			
		||||
	foreach my $ext (sort @extlist)
 | 
			
		||||
	{
 | 
			
		||||
		my ($extname, $exturl, $extstring, $types, $tokens, $functions, $exacts) = parse_ext($ext);
 | 
			
		||||
		print "\n#if !defined(GLEW_SUBSET) || defined(GLEW_SUBSET_$extname)\n";
 | 
			
		||||
		output_decls($functions, \&make_pfn_decl);
 | 
			
		||||
		print "\n#endif /* GLEW_SUBSET_$extname */\n";
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -158,6 +158,20 @@ typedef _W64 int ptrdiff_t;
 | 
			
		||||
 | 
			
		||||
#endif /* _WIN32 */
 | 
			
		||||
 | 
			
		||||
/* GLEW depends on extension string entry points for internal purposes */
 | 
			
		||||
 | 
			
		||||
#ifdef GLEW_SUBSET
 | 
			
		||||
#ifndef GLEW_SUBSET_WGL_ARB_extensions_string
 | 
			
		||||
#define GLEW_SUBSET_WGL_ARB_extensions_string
 | 
			
		||||
#endif
 | 
			
		||||
#ifndef GLEW_SUBSET_WGL_EXT_extensions_string
 | 
			
		||||
#define GLEW_SUBSET_WGL_EXT_extensions_string
 | 
			
		||||
#endif
 | 
			
		||||
#ifndef GLEW_SUBSET_GLX_VERSION_1_2
 | 
			
		||||
#define GLEW_SUBSET_GLX_VERSION_1_2
 | 
			
		||||
#endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifdef __cplusplus
 | 
			
		||||
extern "C" {
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user