summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-31 12:07:03 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-31 12:07:03 -0600
commit3798395af5106c2100ea56b23762ad76890c6351 (patch)
tree6ee78960cef50403edbdf8b76041695788b115f0 /src
parent8984a283389a13f9b4315aa7b7df1eaaa612ba28 (diff)
move a few lines of code
Diffstat (limited to 'src')
-rw-r--r--src/mesa/drivers/dri/intel_winsys/intel_context.c9
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 790f67b552..6c880498e5 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");