pango: Use CoglMaterial type for materials

Instead of using the CoglHandle type for material variables this updates
the pango code to use CoglMaterial * instead. CoglHandle is the old
typename which is being phased out of the API.
This commit is contained in:
Robert Bragg
2010-10-27 12:43:36 +01:00
parent e673de0b55
commit 47ceb34ba9
3 changed files with 7 additions and 7 deletions

View File

@ -309,7 +309,7 @@ emit_vertex_buffer_geometry (CoglPangoDisplayListNode *node)
}
static void
_cogl_pango_display_list_render_texture (CoglHandle material,
_cogl_pango_display_list_render_texture (CoglMaterial *material,
const CoglColor *color,
CoglPangoDisplayListNode *node)
{
@ -336,8 +336,8 @@ _cogl_pango_display_list_render_texture (CoglHandle material,
void
_cogl_pango_display_list_render (CoglPangoDisplayList *dl,
const CoglColor *color,
CoglHandle glyph_material,
CoglHandle solid_material)
CoglMaterial *glyph_material,
CoglMaterial *solid_material)
{
GSList *l;