diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-09-29 09:51:11 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-09-29 09:51:11 -0600 |
commit | 91550f0a17488f41da4829a627db90f0081250dc (patch) | |
tree | dbebea5287dbfaa30ec426a72bea8ed3c1868f08 /src/mesa | |
parent | 9405ec62512ca7195905644d9c7f271ae01662c5 (diff) |
remove unused tgsi_exec_cond_* types
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/pipe/tgsi/exec/tgsi_exec.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/mesa/pipe/tgsi/exec/tgsi_exec.h b/src/mesa/pipe/tgsi/exec/tgsi_exec.h index f87d6e8862..54b38cb4b2 100644 --- a/src/mesa/pipe/tgsi/exec/tgsi_exec.h +++ b/src/mesa/pipe/tgsi/exec/tgsi_exec.h @@ -97,30 +97,6 @@ struct tgsi_exec_labels #define TGSI_EXEC_NUM_TEMPS (32 + 4) #define TGSI_EXEC_NUM_ADDRS 1 -/* XXX: This is temporary */ -struct tgsi_exec_cond_regs -{ - struct tgsi_exec_vector TempsAddrs[TGSI_EXEC_NUM_TEMPS + TGSI_EXEC_NUM_ADDRS]; - struct tgsi_exec_vector Outputs[2]; /* XXX: That's just enough for fragment shader only! */ -}; - -/* XXX: This is temporary */ -struct tgsi_exec_cond_state -{ - struct tgsi_exec_cond_regs IfPortion; - struct tgsi_exec_cond_regs ElsePortion; - unsigned Condition; - boolean WasElse; -}; - -/* XXX: This is temporary */ -struct tgsi_exec_cond_stack -{ - struct tgsi_exec_cond_state States[8]; - unsigned Index; /* into States[] */ -}; - - #define TGSI_EXEC_MAX_COND_NESTING 10 |