context: removes some uses of CoglHandle
There were several members of the CoglContext struct using the CoglHandle type for things that now have replacement typedefs which this patch fixes. Reviewed-by: Neil Roberts <neil@linux.intel.com>
This commit is contained in:
@ -265,13 +265,13 @@ _cogl_debug_dump_pipelines_dot_file (const char *filename)
|
||||
layer_state.parent_id = -1;
|
||||
layer_state.node_id_ptr = &layer_id;
|
||||
layer_state.indent = 0;
|
||||
dump_layer_cb (ctx->default_layer_0, &layer_state);
|
||||
dump_layer_cb ((CoglNode *)ctx->default_layer_0, &layer_state);
|
||||
|
||||
pipeline_state.graph = graph;
|
||||
pipeline_state.parent_id = -1;
|
||||
pipeline_state.node_id_ptr = &pipeline_id;
|
||||
pipeline_state.indent = 0;
|
||||
dump_pipeline_cb (ctx->default_pipeline, &pipeline_state);
|
||||
dump_pipeline_cb ((CoglNode *)ctx->default_pipeline, &pipeline_state);
|
||||
|
||||
g_string_append_printf (graph, "}\n");
|
||||
|
||||
|
Reference in New Issue
Block a user