This website works better with JavaScript.
Home
Explore
Help
Sign In
brkho
/
mesa
Watch
1
Star
0
Fork
0
Code
Releases
562
Wiki
Activity
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
c9aabc866f
commit
c3bf0cbefc
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
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 "u
nsigned
"
return "u
int
"
return "float"
return g + "vec" + str(size)
Write
Preview
Loading…
Cancel
Save