diff options
author | Brian Paul <[email protected]> | 2013-05-03 19:00:07 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-05-03 19:00:07 -0600 |
commit | 36c83ccca0857dd4cf6b6168b60f5e95ac07fc73 (patch) | |
tree | 9f1b93f67a4b00c1aacb277a5205db7cde639b4d /src/mesa/main/dd.h | |
parent | af30987a69848795d700357c3190b5adf44749fa (diff) |
mesa; change ctx->Driver.SaveNeedFlush to boolean, and document it.
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index bc93026f3f7..c5531a45031 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -703,8 +703,9 @@ struct dd_function_table { * these conditions. */ GLuint NeedFlush; - GLuint SaveNeedFlush; + /** Need to call SaveFlushVertices() upon state change? */ + GLboolean SaveNeedFlush; /* Called prior to any of the GLvertexformat functions being * called. Paired with Driver.FlushVertices(). |