Browse Source

texture_builtins.py: The unsigned integer type is "uint", not "unsigned"

This doesn't actually affect anything yet, but is good to fix anyway.
tags/mesa-7.9-rc1
Kenneth Graunke 15 years ago
parent
commit
c3bf0cbefc
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      builtins/tools/texture_builtins.py

+ 1
- 1
builtins/tools/texture_builtins.py View File

@@ -8,7 +8,7 @@ def vec_type(g, size):
if g == "i":
return "int"
elif g == "u":
return "unsigned"
return "uint"
return "float"
return g + "vec" + str(size)


Loading…
Cancel
Save