diff options
author | Kenneth Graunke <[email protected]> | 2015-12-17 21:17:07 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2015-12-22 17:22:02 -0800 |
commit | 9d35fecfb94e26a5fe6b361ebe83044fae9131bf (patch) | |
tree | 7aee874f811e38abd7ca8daa84111910afa51ce7 /src/mesa/drivers/dri/i965/gen7_te_state.c | |
parent | f46dbfaed914e0e3463f3a28fc877695cd7e7834 (diff) |
i965: Remove unnecessary brw->tess_ctrl_program assertions.
This is trying to enforce the fact that the hardware requires HS, TE,
and DS to be enabled or disabled together. But it's kind of an ad-hoc
attempt, and not too useful.
More importantly, we aren't going to have a gl_shader_program for the
TCS which is automatically generated when none is present. (We'll just
handle it in the driver backend.) So, these will trip for no reason.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/gen7_te_state.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/gen7_te_state.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/gen7_te_state.c b/src/mesa/drivers/dri/i965/gen7_te_state.c index 6d7ce40de51..f221307bc43 100644 --- a/src/mesa/drivers/dri/i965/gen7_te_state.c +++ b/src/mesa/drivers/dri/i965/gen7_te_state.c @@ -31,8 +31,6 @@ upload_te_state(struct brw_context *brw) { /* BRW_NEW_TESS_PROGRAMS */ bool active = brw->tess_eval_program; - if (active) - assert(brw->tess_ctrl_program); const struct brw_tes_prog_data *tes_prog_data = brw->tes.prog_data; |