summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vs.h
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2012-11-27 00:16:05 -0800
committerKenneth Graunke <[email protected]>2012-11-28 18:16:01 -0800
commitc1023608002c985b9d72edc64732cd666de2a206 (patch)
treef35d949ffff9539c2eb2e492b8f4aad7ac6e63ad /src/mesa/drivers/dri/i965/brw_vs.h
parenteda9726ef51dcfd3895924eb0f74df8e67aa9c3a (diff)
i965/vs: Move struct brw_compile (p) entirely inside vec4_generator.
The brw_compile structure contains the brw_instruction store and the brw_eu_emit.c state tracking fields. These are only useful for the final assembly generation pass; the earlier compilation stages doesn't need them. This also means that the code generator for future hardware won't have access to the brw_compile structure, which is extremely desirable because it prevents accidental generation of Gen4-7 code. Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vs.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vs.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vs.h b/src/mesa/drivers/dri/i965/brw_vs.h
index 7ac1775c83e..75c8a5f8c98 100644
--- a/src/mesa/drivers/dri/i965/brw_vs.h
+++ b/src/mesa/drivers/dri/i965/brw_vs.h
@@ -94,7 +94,6 @@ struct brw_vs_prog_key {
struct brw_vs_compile {
- struct brw_compile func;
struct brw_vs_prog_key key;
struct brw_vs_prog_data prog_data;