From f77428991c36b05e7e289c6f69df4bb2da3d5e0a Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Thu, 29 Jan 2009 16:24:24 +0000 Subject: [PATCH] Some updates for the 1.0 release notes regarding Cogl Documents that the cogl_rectangle arguments changed from x1, y1, width, height to x1, y1, x2, y2; notes that cogl_scale now accepts a z-scale; adds a note about the new vertex buffer API and fixes a s/CoglMesh/CoglMatrix/ typo. --- README | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README b/README index 815447b..f807a3d 100644 --- a/README +++ b/README @@ -260,14 +260,23 @@ Release Notes for Clutter 1.0 cogl_set_source_texture (tex_handle); cogl_polygon (verts, 3, TRUE); -* A CoglMesh type and utility API has been added; this is currently used to +* The arguments to cogl_rectangle have been changed - for consistency - from + x1, y2, width, height, to x1, y1, x2, y2. + +* A CoglMatrix type and utility API has been added; this is currently used to support describing texture matrices. * cogl_alpha_func has been removed, since this is now controlled using the material API via cogl_material_set_alpha_test_function () +* A Cogl Vertex Buffer API has been added that allows you to efficiently + manage arrays of vertex attributes in buffers that may be stored on + the GPU. These allow you to avoid the costs of repeatedy validating + vertex data and mapping it into the GPU. + * cogl_scale now supports scaling on the z axis + Release Notes for Clutter 0.8 ------------------------------- -- 2.7.4