diff options
author | Kenneth Graunke <[email protected]> | 2015-12-01 22:41:32 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2015-12-28 13:16:19 -0800 |
commit | 74b83fe368eab77da4ef0ea6eaeea54514d6dfc9 (patch) | |
tree | c5e9d48263f388ed588d67f498a08f4221a53922 /src/mesa/drivers/dri/i965/gen7_hs_state.c | |
parent | 237f2f2d8b45d9d956102eec6f9be63193e5269b (diff) |
i965: Add the TCS/TES state upload atoms to the gen7_atoms list.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/gen7_hs_state.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/gen7_hs_state.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mesa/drivers/dri/i965/gen7_hs_state.c b/src/mesa/drivers/dri/i965/gen7_hs_state.c index 6793617b9e2..d23a4f8c2cf 100644 --- a/src/mesa/drivers/dri/i965/gen7_hs_state.c +++ b/src/mesa/drivers/dri/i965/gen7_hs_state.c @@ -62,16 +62,6 @@ gen7_upload_hs_state(struct brw_context *brw) { /* Disable the HS Unit */ BEGIN_BATCH(7); - OUT_BATCH(_3DSTATE_CONSTANT_HS << 16 | (7 - 2)); - OUT_BATCH(0); - OUT_BATCH(0); - OUT_BATCH(0); - OUT_BATCH(0); - OUT_BATCH(0); - OUT_BATCH(0); - ADVANCE_BATCH(); - - BEGIN_BATCH(7); OUT_BATCH(_3DSTATE_HS << 16 | (7 - 2)); OUT_BATCH(0); OUT_BATCH(0); @@ -80,11 +70,6 @@ gen7_upload_hs_state(struct brw_context *brw) OUT_BATCH(0); OUT_BATCH(0); ADVANCE_BATCH(); - - BEGIN_BATCH(2); - OUT_BATCH(_3DSTATE_BINDING_TABLE_POINTERS_HS << 16 | (2 - 2)); - OUT_BATCH(brw->hw_bt_pool.next_offset); - ADVANCE_BATCH(); } const struct brw_tracked_state gen7_hs_state = { |