texture_builtins.py: Fix cut and paste errors in function names.
authorKenneth Graunke <kenneth@whitecape.org>
Sat, 7 Aug 2010 08:11:43 +0000 (01:11 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Mon, 9 Aug 2010 19:41:39 +0000 (12:41 -0700)
Some signatures were being generated with the wrong function name.

src/glsl/builtins/130/textureProjGrad
src/glsl/builtins/130/textureProjLod
src/glsl/builtins/tools/texture_builtins.py

index a0142c5e683ea5ac12f892645aff321602592853..b4bfa58c1231dde6e9458caa1b65ef9269e1e20f 100644 (file)
@@ -1,4 +1,4 @@
-((function textureLod
+((function textureProjGrad
    (signature vec4
      (parameters
        (declare (in) sampler1D sampler)
index 9f4ce1b493dab2679b640d79045b5f06acf947a0..d242f7e40fc7f9458f42ea3e3e4917dd0f4e2d83 100644 (file)
@@ -1,4 +1,4 @@
-((function textureLod
+((function textureProjLod
    (signature vec4
      (parameters
        (declare (in) sampler1D sampler)
index 23d53149161e02cc70330f566413963b206995b4..c4672ae8c1287f8628869b6173962465cd517801 100755 (executable)
@@ -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)