summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/tgsi/exec/tgsi_exec.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-02 10:38:56 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-02 10:38:56 -0600
commit57d3770f35730bef17e5d93bd424a59eb6daec4c (patch)
tree047edf8741d6002a4b5de0b2ba74faeb92dda4f2 /src/mesa/pipe/tgsi/exec/tgsi_exec.h
parentcdf99a9fad0fcb080244faa7d32b33b1cfaf6ff7 (diff)
checkpoint: unpack all instructions before interpretation. Actual looping works.
Diffstat (limited to 'src/mesa/pipe/tgsi/exec/tgsi_exec.h')
-rw-r--r--src/mesa/pipe/tgsi/exec/tgsi_exec.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_exec.h b/src/mesa/pipe/tgsi/exec/tgsi_exec.h
index e67a8138e8..8997ea9c09 100644
--- a/src/mesa/pipe/tgsi/exec/tgsi_exec.h
+++ b/src/mesa/pipe/tgsi/exec/tgsi_exec.h
@@ -148,6 +148,12 @@ struct tgsi_exec_machine
/** Loop mask stack (for nested loops) */
uint LoopStack[TGSI_EXEC_MAX_LOOP_NESTING];
int LoopStackTop;
+
+ struct tgsi_full_instruction *Instructions;
+ uint NumInstructions;
+
+ struct tgsi_full_declaration *Declarations;
+ uint NumDeclarations;
};