diff options
author | Brian Paul <[email protected]> | 2008-06-20 11:30:43 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-20 11:30:43 -0600 |
commit | 722db809e64cab61846c3f086fcba4847caad216 (patch) | |
tree | 78d98d77346e7b8ac6e9ef79cac052a4b34a4c09 /src/mesa | |
parent | 62d1d591d5c4d6efdbb10b45e3a38116f95794b6 (diff) |
gallium: always need st_init-blit()
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/state_tracker/st_context.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c index 5da5bcfd37f..bf78cacb8ea 100644 --- a/src/mesa/state_tracker/st_context.c +++ b/src/mesa/state_tracker/st_context.c @@ -38,9 +38,7 @@ #include "st_context.h" #include "st_cb_accum.h" #include "st_cb_bitmap.h" -#if FEATURE_EXT_framebuffer_blit #include "st_cb_blit.h" -#endif #include "st_cb_bufferobjects.h" #include "st_cb_clear.h" #if FEATURE_drawpix @@ -120,9 +118,7 @@ st_create_context_priv( GLcontext *ctx, struct pipe_context *pipe ) st_init_clear(st); st_init_draw( st ); st_init_generate_mipmap(st); -#if FEATURE_EXT_framebuffer_blit st_init_blit(st); -#endif for (i = 0; i < PIPE_MAX_SAMPLERS; i++) st->state.sampler_list[i] = &st->state.samplers[i]; |