diff options
author | Brian <[email protected]> | 2007-10-31 12:07:03 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-10-31 12:07:03 -0600 |
commit | 3798395af5106c2100ea56b23762ad76890c6351 (patch) | |
tree | 6ee78960cef50403edbdf8b76041695788b115f0 | |
parent | 8984a283389a13f9b4315aa7b7df1eaaa612ba28 (diff) |
move a few lines of code
-rw-r--r-- | src/mesa/drivers/dri/intel_winsys/intel_context.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/intel_winsys/intel_context.c b/src/mesa/drivers/dri/intel_winsys/intel_context.c index 790f67b5520..6c880498e51 100644 --- a/src/mesa/drivers/dri/intel_winsys/intel_context.c +++ b/src/mesa/drivers/dri/intel_winsys/intel_context.c @@ -225,6 +225,10 @@ intelCreateContext(const __GLcontextModes * mesaVis, intel->iw.irq_seq = -1; intel->irqsEmitted = 0; + intel->batch = intel_batchbuffer_alloc(intel); + intel->last_swap_fence = NULL; + intel->first_swap_fence = NULL; + /* Disable imaging extension until convolution is working in * teximage paths: */ @@ -232,11 +236,6 @@ intelCreateContext(const __GLcontextModes * mesaVis, /* GL_TRUE, */ GL_FALSE); - - intel->batch = intel_batchbuffer_alloc(intel); - intel->last_swap_fence = NULL; - intel->first_swap_fence = NULL; - if (intel->ctx.Mesa_DXTn) { _mesa_enable_extension(ctx, "GL_EXT_texture_compression_s3tc"); _mesa_enable_extension(ctx, "GL_S3_s3tc"); |