remove unused tgsi_exec_cond_* types
authorBrian <brian.paul@tungstengraphics.com>
Sat, 29 Sep 2007 15:51:11 +0000 (09:51 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Sat, 29 Sep 2007 15:51:11 +0000 (09:51 -0600)
src/mesa/pipe/tgsi/exec/tgsi_exec.h

index f87d6e88623aff375b74217503c179afad3dfb9f..54b38cb4b28ea4725ac3d2ba5631e600ddc031d3 100644 (file)
@@ -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