diff options
author | Brian Paul <[email protected]> | 2009-07-10 13:07:45 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-07-10 13:09:09 -0600 |
commit | 762c1d11ffbb5179e44117397559e7cc2dfe9cef (patch) | |
tree | a9ead6254810cdbb9751befb2491dc6a660b9e34 | |
parent | baa7ff47d548cdcc1ea68657ee1b0500f78041be (diff) |
st/mesa: implement indirect addressing for destination registers
-rw-r--r-- | src/mesa/state_tracker/st_mesa_to_tgsi.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_mesa_to_tgsi.c b/src/mesa/state_tracker/st_mesa_to_tgsi.c index 8aef3fc6dcf..e150dff9bbc 100644 --- a/src/mesa/state_tracker/st_mesa_to_tgsi.c +++ b/src/mesa/state_tracker/st_mesa_to_tgsi.c @@ -268,6 +268,11 @@ compile_instruction( NULL, GL_FALSE ); fulldst->DstRegister.WriteMask = convert_writemask( inst->DstReg.WriteMask ); + if (inst->DstReg.RelAddr) { + fulldst->DstRegister.Indirect = 1; + fulldst->DstRegisterInd.File = TGSI_FILE_ADDRESS; + fulldst->DstRegisterInd.Index = 0; + } for (i = 0; i < fullinst->Instruction.NumSrcRegs; i++) { GLuint j; |