diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-03-28 14:53:47 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-03-28 14:53:47 -0600 |
commit | c62b197b528293abb56b099503344e3cdd7d6c40 (patch) | |
tree | 2c288f52217dce9747b54a5942bd686a71b5ad3a /src/mesa/state_tracker/st_context.c | |
parent | 13041da714106ae61b4184b79e847c2b382e07ad (diff) |
gallium: implement a glBitmap cache
The bitmap cache attempts to accumulate a series of glBitmap calls in a
buffer to effectively render a whole bunch of bitmaps at once.
The cache can be disabled, if needed, by setting UseBitmapCache=GL_FALSE.
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 726e06d7c2..a20195f2de 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -109,6 +109,7 @@ st_create_context_priv( GLcontext *ctx, struct pipe_context *pipe ) st->cso_context = cso_create_context(pipe); st_init_atoms( st ); + st_init_bitmap(st); st_init_draw( st ); st_init_generate_mipmap(st); st_init_blit(st); |