mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 07:10:15 +01:00
texture_builtins.py: The unsigned integer type is "uint", not "unsigned"
This doesn't actually affect anything yet, but is good to fix anyway.
This commit is contained in:
parent
c9aabc866f
commit
c3bf0cbefc
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue