[clutter] cookbook/examples: Don't mix up height and width while splitting
- From: Emmanuele Bassi <ebassi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [clutter] cookbook/examples: Don't mix up height and width while splitting
- Date: Thu, 31 May 2012 12:01:43 +0000 (UTC)
commit d154a10fa0e206a013058a45955b2a582d1417c0
Author: Debarshi Ray <debarshir gnome org>
Date: Mon May 14 00:57:57 2012 +0200
cookbook/examples: Don't mix up height and width while splitting
Fixes: https://bugzilla.gnome.org/675998
doc/cookbook/examples/textures-split-go.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/doc/cookbook/examples/textures-split-go.c b/doc/cookbook/examples/textures-split-go.c
index f94385b..47fee88 100644
--- a/doc/cookbook/examples/textures-split-go.c
+++ b/doc/cookbook/examples/textures-split-go.c
@@ -137,16 +137,16 @@ main (int argc,
/* Create four sub-textures from image, actually splitting the image in
* four */
context.sub_nw = setup_sub (texture, image_width, image_height,
- 0, 0, image_width / 2 , image_width / 2);
+ 0, 0, image_width / 2 , image_height / 2);
context.sub_ne = setup_sub (texture, image_width, image_height,
image_width / 2 , 0,
- image_width / 2, image_width / 2);
+ image_width / 2, image_height / 2);
context.sub_sw = setup_sub (texture, image_width, image_height,
- 0.f, image_width / 2,
- image_width / 2, image_width / 2);
+ 0.f, image_height / 2,
+ image_width / 2, image_height / 2);
context.sub_se = setup_sub (texture, image_width, image_height,
- image_width / 2, image_width / 2,
- image_width / 2, image_width / 2);
+ image_width / 2, image_height / 2,
+ image_width / 2, image_height / 2);
/* We don't need the image anymore as we won't display it and as
* cogl_texture_new_from_sub_texture() keeps a reference to the underlying
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]