diff options
author | Brian Paul <[email protected]> | 2008-04-03 12:54:32 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-04-03 12:54:32 -0600 |
commit | ce5c867cbb17b2444ebc3db5c6a03cee5e2edb8a (patch) | |
tree | f6b9df6234540f2d47c836ed2084a014d7089a81 /src/mesa/state_tracker/st_context.c | |
parent | e8823bb7dfad7c6241da185cd0ac94ede42c33e5 (diff) |
gallium: streamline viewport/raster/shader state for clearing with quads
Move init of these items to new st_init_clear().
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index a20195f2dea..7511c280740 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -110,6 +110,7 @@ st_create_context_priv( GLcontext *ctx, struct pipe_context *pipe ) st_init_atoms( st ); st_init_bitmap(st); + st_init_clear(st); st_init_draw( st ); st_init_generate_mipmap(st); st_init_blit(st); |