Conflicts:
clutter/cogl/gl/cogl-context.c
clutter/cogl/gl/cogl-context.h
_context->texture_vertices_size = 0;
_context->texture_vertices = NULL;
-
+ _context->material_handles = NULL;
+ _context->material_layer_handles = NULL;
+ _context->source_material = NULL;
++
_context->fbo_handles = NULL;
_context->draw_buffer = COGL_WINDOW_BUFFER;
-
+
_context->blend_src_factor = CGL_SRC_ALPHA;
_context->blend_dst_factor = CGL_ONE_MINUS_SRC_ALPHA;
GArray *texture_handles;
CoglTextureGLVertex *texture_vertices;
gulong texture_vertices_size;
-
+
+ /* Materials */
+ GArray *material_handles;
+ GArray *material_layer_handles;
+ CoglHandle source_material;
+
/* Framebuffer objects */
GArray *fbo_handles;
CoglBufferTarget draw_buffer;