texture_builtins.py: Fix cut and paste errors in function names.

Some signatures were being generated with the wrong function name.
This commit is contained in:
Kenneth Graunke
2010-08-07 01:11:43 -07:00
parent dbff7b541e
commit 2eed82ebc0
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
((function textureLod
((function textureProjGrad
(signature vec4
(parameters
(declare (in) sampler1D sampler)
+1 -1
View File
@@ -1,4 +1,4 @@
((function textureLod
((function textureProjLod
(signature vec4
(parameters
(declare (in) sampler1D sampler)
+2 -2
View File
@@ -156,7 +156,7 @@ with open(path.join(builtins_dir, "130", "texelFetch"), 'w') as sys.stdout:
print "))"
with open(path.join(builtins_dir, "130", "textureProjLod"), 'w') as sys.stdout:
print "((function textureLod"
print "((function textureProjLod"
generate_fiu_sigs("txl", "1D", True)
generate_fiu_sigs("txl", "1D", True, 2)
generate_fiu_sigs("txl", "2D", True)
@@ -175,7 +175,7 @@ with open(path.join(builtins_dir, "130", "textureGrad"), 'w') as sys.stdout:
print ")\n)"
with open(path.join(builtins_dir, "130", "textureProjGrad"), 'w') as sys.stdout:
print "((function textureLod"
print "((function textureProjGrad"
generate_fiu_sigs("txd", "1D", True)
generate_fiu_sigs("txd", "1D", True, 2)
generate_fiu_sigs("txd", "2D", True)