summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965simple/brw_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/i965simple/brw_context.h')
-rw-r--r--src/gallium/drivers/i965simple/brw_context.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/gallium/drivers/i965simple/brw_context.h b/src/gallium/drivers/i965simple/brw_context.h
index 642db5b5a26..4da3a8cffcf 100644
--- a/src/gallium/drivers/i965simple/brw_context.h
+++ b/src/gallium/drivers/i965simple/brw_context.h
@@ -197,33 +197,22 @@ struct brw_state_flags {
};
-struct brw_shader_info {
- int nr_regs[8]; /* TGSI_FILE_* */
-};
-
-
-
struct brw_vertex_program {
struct pipe_shader_state program;
struct tgsi_shader_info info;
- struct brw_shader_info info2; /* XXX get rid of this */
int id;
};
-
struct brw_fragment_program {
struct pipe_shader_state program;
struct tgsi_shader_info info;
- struct brw_shader_info info2; /* XXX get rid of this */
- boolean UsesDepth;
+ boolean UsesDepth; /* XXX add this to tgsi_shader_info? */
int id;
};
-
-
struct pipe_setup_linkage {
struct {
unsigned vp_output:5;