From b61b328f5167fb61f0a79979e3ce84cfd4d032e5 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Tue, 10 Apr 2012 16:52:10 +0100 Subject: [PATCH] cogl-crate: print GError message if texture load fails If we fail to load the crate texture then we now print error->message to hopefully give more insight into the failure to the user. Reviewed-by: Neil Roberts --- examples/cogl-crate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/cogl-crate.c b/examples/cogl-crate.c index f0a7bbd2a..969dc5c83 100644 --- a/examples/cogl-crate.c +++ b/examples/cogl-crate.c @@ -223,9 +223,9 @@ main (int argc, char **argv) data.texture = cogl_texture_new_from_file (COGL_EXAMPLES_DATA "crate.jpg", COGL_TEXTURE_NO_SLICING, COGL_PIXEL_FORMAT_ANY, - NULL); + &error); if (!data.texture) - g_error ("Failed to load texture"); + g_error ("Failed to load texture: %s", error->message); /* a CoglPipeline conceptually describes all the state for vertex * processing, fragment processing and blending geometry. When