cogl-context: Remove the unused buffer_types variable
https://bugzilla.gnome.org/show_bug.cgi?id=693696 Reviewed-by: Neil Roberts <neil@linux.intel.com>
This commit is contained in:
parent
f79e78f648
commit
a60f16116d
@ -247,10 +247,6 @@ struct _CoglContext
|
|||||||
cogl_is_texture */
|
cogl_is_texture */
|
||||||
GSList *texture_types;
|
GSList *texture_types;
|
||||||
|
|
||||||
/* List of types that will be considered a subclass of CoglBuffer in
|
|
||||||
cogl_is_buffer */
|
|
||||||
GSList *buffer_types;
|
|
||||||
|
|
||||||
/* Clipping */
|
/* Clipping */
|
||||||
/* TRUE if we have a valid clipping stack flushed. In that case
|
/* TRUE if we have a valid clipping stack flushed. In that case
|
||||||
current_clip_stack will describe what the current state is. If
|
current_clip_stack will describe what the current state is. If
|
||||||
|
@ -180,7 +180,6 @@ cogl_context_new (CoglDisplay *display,
|
|||||||
context->private_feature_flags = 0;
|
context->private_feature_flags = 0;
|
||||||
|
|
||||||
context->texture_types = NULL;
|
context->texture_types = NULL;
|
||||||
context->buffer_types = NULL;
|
|
||||||
|
|
||||||
context->rectangle_state = COGL_WINSYS_RECTANGLE_STATE_UNKNOWN;
|
context->rectangle_state = COGL_WINSYS_RECTANGLE_STATE_UNKNOWN;
|
||||||
|
|
||||||
@ -560,7 +559,6 @@ _cogl_context_free (CoglContext *context)
|
|||||||
_cogl_bitmask_destroy (&context->changed_bits_tmp);
|
_cogl_bitmask_destroy (&context->changed_bits_tmp);
|
||||||
|
|
||||||
g_slist_free (context->texture_types);
|
g_slist_free (context->texture_types);
|
||||||
g_slist_free (context->buffer_types);
|
|
||||||
|
|
||||||
if (context->current_modelview_entry)
|
if (context->current_modelview_entry)
|
||||||
cogl_matrix_entry_unref (context->current_modelview_entry);
|
cogl_matrix_entry_unref (context->current_modelview_entry);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user