diff options
author | Jakob Bornecrantz <[email protected]> | 2011-04-15 21:13:04 +0100 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-10-19 10:10:12 -0600 |
commit | 72bd2b603bc400371a92d34ab59dbb2d2ef7a123 (patch) | |
tree | ebac56def7878c680232e7574e8e52524cad0550 /src/mesa/state_tracker/st_context.h | |
parent | d3561bd0bc4a88ee0500460f8e0830a818e456a9 (diff) |
st/mesa: Implement primitive restart in software
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index 0a322022149..c6078098963 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -75,6 +75,7 @@ struct st_context struct draw_stage *feedback_stage; /**< For GL_FEEDBACK rendermode */ struct draw_stage *selection_stage; /**< For GL_SELECT rendermode */ struct draw_stage *rastpos_stage; /**< For glRasterPos */ + GLboolean sw_primitive_restart; /* On old libGL's for linux we need to invalidate the drawables |