From ffd47f5b56fe2f02a4ee350be913f2ba5fdf3d51 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 18 Aug 2009 11:11:29 +0100 Subject: [PATCH] [docs] texture_polygon() is called polygon() Remove the mentions to the old name of cogl_polygon(). --- cogl-types.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cogl-types.h b/cogl-types.h index 7178d8d8e..30c73d4f7 100644 --- a/cogl-types.h +++ b/cogl-types.h @@ -246,14 +246,15 @@ struct _CoglColor * @tx: Texture x-coordinate * @ty: Texture y-coordinate * @color: The color to use at this vertex. This is ignored if - * @use_color is %FALSE when calling cogl_texture_polygon(). + * use_color is %FALSE when calling cogl_polygon() * - * Used to specify vertex information when calling cogl_texture_polygon(). + * Used to specify vertex information when calling cogl_polygon() */ struct _CoglTextureVertex { float x, y, z; float tx, ty; + CoglColor color; };