summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKirk A. Baker <kbaker@camerabits.com>2011-07-11 21:37:09 -0700
committerRobert Bragg <robert@linux.intel.com>2011-07-27 15:55:27 +0100
commit76c88958b72dccc98586f00b2ac43d4377fa71b1 (patch)
treeb04992dda431b6ec0f2949dab7e5e8a5f5794b5d
parent1287d264446317e739b208a2b513396606751c65 (diff)
downloadcogl-76c88958b72dccc98586f00b2ac43d4377fa71b1.tar.gz
Fixed uninitialized data (current_clip_stack_valid) in context creation
Reviewed-By: Robert Bragg <robert@linux.intel.com>
-rw-r--r--cogl/cogl-context.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cogl/cogl-context.c b/cogl/cogl-context.c
index 90ef988c..aa8bae85 100644
--- a/cogl/cogl-context.c
+++ b/cogl/cogl-context.c
@@ -213,6 +213,8 @@ cogl_context_new (CoglDisplay *display,
_cogl_pipeline_init_layer_state_hash_functions ();
context->enable_flags = 0;
+ context->current_clip_stack_valid = FALSE;
+ context->current_clip_stack = NULL;
context->enable_backface_culling = FALSE;
context->flushed_front_winding = COGL_FRONT_WINDING_COUNTER_CLOCKWISE;
@@ -309,8 +311,6 @@ cogl_context_new (CoglDisplay *display,
cogl_object_unref (COGL_FRAMEBUFFER (window));
}
- _context->current_clip_stack_valid = FALSE;
-
context->dirty_bound_framebuffer = TRUE;
context->dirty_gl_viewport = TRUE;