diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-06-20 08:47:09 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-06-20 08:47:09 -0600 |
commit | 73f96c51052bf5233191d852ef463462306bf1d5 (patch) | |
tree | 29a1f9f4b5f052f7894dce351ebfb4a8ae69b85a /src/mesa/pipe/p_state.h | |
parent | 6cb2d0cb71d2019bd2c941a8c042e56275b22c1c (diff) |
Initial work for glClear(), clear color state.
Diffstat (limited to 'src/mesa/pipe/p_state.h')
-rw-r--r-- | src/mesa/pipe/p_state.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/pipe/p_state.h b/src/mesa/pipe/p_state.h index c88c0de6ad..c4bf0d2195 100644 --- a/src/mesa/pipe/p_state.h +++ b/src/mesa/pipe/p_state.h @@ -133,6 +133,11 @@ struct pipe_blend_color { GLfloat color[4]; }; +struct pipe_clear_color_state +{ + GLfloat color[4]; +}; + struct pipe_line_state { GLuint smooth:1; |