summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu.vizoso@collabora.com>2011-12-28 10:24:27 +0100
committerTomeu Vizoso <tomeu.vizoso@collabora.com>2011-12-28 10:24:27 +0100
commit838ddf0b7fa3dfc9b89146cabc10b4fc808bdb2f (patch)
treeb554e807cb53b5be319c058c5f2d55091510a85a
parentf46eac3b4525360d12e5b3c2bebe2776fe46efb1 (diff)
downloadcogl-838ddf0b7fa3dfc9b89146cabc10b4fc808bdb2f.tar.gz
Fix comment in example
-rw-r--r--examples/cogl-gles2-context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cogl-gles2-context.c b/examples/cogl-gles2-context.c
index 16b3b7d7..3714b746 100644
--- a/examples/cogl-gles2-context.c
+++ b/examples/cogl-gles2-context.c
@@ -35,7 +35,7 @@ update_offscreen_texture (CoglContext *ctx, CoglTexture *offscreen_texture)
cogl_push_framebuffer (offscreen_framebuffer);
- /* Clear offscreen framebuffer with green */
+ /* Clear offscreen framebuffer with a random color */
vtable->glClearColor(g_random_double (), g_random_double (), g_random_double (), 1.0f);
vtable->glClear(GL_COLOR_BUFFER_BIT);