diff options
author | Kenneth Graunke <[email protected]> | 2010-06-09 16:11:36 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2010-06-09 16:11:36 -0700 |
commit | c3bf0cbefc32b76da0d196887c32159ba98b1e5a (patch) | |
tree | eb38b626a668bccde367588c789adc0b35ed11c7 /builtins/tools | |
parent | c9aabc866f1fa2b724780800cf97cf6f3c1c1cf4 (diff) |
texture_builtins.py: The unsigned integer type is "uint", not "unsigned"
This doesn't actually affect anything yet, but is good to fix anyway.
Diffstat (limited to 'builtins/tools')
-rwxr-xr-x | builtins/tools/texture_builtins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/tools/texture_builtins.py b/builtins/tools/texture_builtins.py index be0bc6fc0af..23d53149161 100755 --- a/builtins/tools/texture_builtins.py +++ b/builtins/tools/texture_builtins.py @@ -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) |