projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd5ac3c
)
tgsi: Fix typo in ureg constant creation.
author
José Fonseca
<jfonseca@vmware.com>
Tue, 18 Aug 2009 14:25:33 +0000
(15:25 +0100)
committer
Keith Whitwell
<keithw@vmware.com>
Wed, 19 Aug 2009 11:03:10 +0000
(12:03 +0100)
(cherry picked from commit
aa40c9abc7787fdf46cb661a4d0bb8bec513fc63
)
src/gallium/auxiliary/tgsi/tgsi_ureg.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/tgsi/tgsi_ureg.c
b/src/gallium/auxiliary/tgsi/tgsi_ureg.c
index bbe06bfd7c671e80b6a27576a8d01d7d1df99b1a..c2bfcbbcb9337ea603b3f670c34b69f4a5dbcc40 100644
(file)
--- a/
src/gallium/auxiliary/tgsi/tgsi_ureg.c
+++ b/
src/gallium/auxiliary/tgsi/tgsi_ureg.c
@@
-302,7
+302,7
@@
out:
*/
struct ureg_src ureg_DECL_constant(struct ureg_program *ureg )
{
- return ureg_src_register( TGSI_FILE_
TEMPORARY
, ureg->nr_constants++ );
+ return ureg_src_register( TGSI_FILE_
CONSTANT
, ureg->nr_constants++ );
}