projects
/
profile
/
ivi
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e882ec
)
ir_to_mesa: Flag when we use the address reg.
author
Eric Anholt
<eric@anholt.net>
Tue, 27 Jul 2010 00:30:35 +0000
(17:30 -0700)
committer
Eric Anholt
<eric@anholt.net>
Tue, 27 Jul 2010 00:45:37 +0000
(17:45 -0700)
Hardware backends will get angry otherwise.
src/mesa/shader/ir_to_mesa.cpp
patch
|
blob
|
history
diff --git
a/src/mesa/shader/ir_to_mesa.cpp
b/src/mesa/shader/ir_to_mesa.cpp
index
c397838
..
89cad8a
100644
(file)
--- a/
src/mesa/shader/ir_to_mesa.cpp
+++ b/
src/mesa/shader/ir_to_mesa.cpp
@@
-2146,6
+2146,8
@@
get_mesa_program(GLcontext *ctx, struct gl_shader_program *shader_program,
inst->function->inst = i;
else if (mesa_inst->Opcode == OPCODE_CAL)
mesa_inst->BranchTarget = inst->function->sig_id; /* rewritten later */
+ else if (mesa_inst->Opcode == OPCODE_ARL)
+ prog->NumAddressRegs = 1;
mesa_inst++;
i++;