From c3bf0cbefc32b76da0d196887c32159ba98b1e5a Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Wed, 9 Jun 2010 16:11:36 -0700 Subject: [PATCH] texture_builtins.py: The unsigned integer type is "uint", not "unsigned" This doesn't actually affect anything yet, but is good to fix anyway. --- builtins/tools/texture_builtins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.30.2