[cogl/cogl-1.10] cogl-crate: print GError message if texture load fails
- From: Neil Roberts <nroberts src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cogl/cogl-1.10] cogl-crate: print GError message if texture load fails
- Date: Mon, 16 Apr 2012 17:52:13 +0000 (UTC)
commit 70baa013d18e7473c71b9ee25d6f240b525b9bda
Author: Robert Bragg <robert linux intel com>
Date: Tue Apr 10 16:52:10 2012 +0100
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 <neil linux intel com>
(cherry picked from commit b61b328f5167fb61f0a79979e3ce84cfd4d032e5)
examples/cogl-crate.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/examples/cogl-crate.c b/examples/cogl-crate.c
index f0a7bbd..969dc5c 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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]