diff options
author | Marek Olšák <[email protected]> | 2016-03-09 17:03:12 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-03-11 16:07:18 +0100 |
commit | af3454cad58be3df63c7fe6caf9604f651a6ce54 (patch) | |
tree | 7cdc8501123554359c3eae68902c84fcf9fc7ce3 /src/mesa/state_tracker/st_context.c | |
parent | e502801d9843984233426f1b31e42bf6095d63be (diff) |
st/mesa: remove ST_NEW_MESA flag (v2)
Only used indirectly when checking dirty.st != 0
v2: also update st_cb_compute.c
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index e3ddee660f7..f5a6f8598ca 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -141,9 +141,7 @@ void st_invalidate_state(struct gl_context * ctx, GLbitfield new_state) /* Invalidate render and compute pipelines. */ st->dirty.mesa |= new_state; - st->dirty.st |= ST_NEW_MESA; st->dirty_cp.mesa |= new_state; - st->dirty_cp.st |= ST_NEW_MESA; /* This is the only core Mesa module we depend upon. * No longer use swrast, swsetup, tnl. |