diff options
author | Marek Olšák <[email protected]> | 2012-05-12 15:52:40 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-06-15 03:15:50 +0200 |
commit | b4753dafcce4fc771ec3d7e3d5781bd4cae20326 (patch) | |
tree | 13ef59a6eceb501f366cb3866e3cf624af85e11e /src/mesa/state_tracker/st_context.h | |
parent | 6bb0151f1fd87b4e15f177c7122fc28fea29497e (diff) |
st/mesa: atomize vertex array state
This moves the state validation to where all the other states are validated.
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index 55ae65b3c49..734b4d9c173 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -88,6 +88,8 @@ struct st_context */ boolean invalidate_on_gl_viewport; + boolean vertex_array_out_of_memory; + /* Some state is contained in constant objects. * Other state is just parameter values. */ |