summaryrefslogtreecommitdiff
path: root/cogl
diff options
context:
space:
mode:
authorNeil Roberts <neil@linux.intel.com>2013-12-02 18:18:39 +0000
committerNeil Roberts <neil@linux.intel.com>2013-12-03 12:00:18 +0000
commit7e1f05c84013bb91248d691091df00f4f634c6cf (patch)
tree25dd8ae44cb7012aafc7e24288ab0d4bc5811ffc /cogl
parent5404033220099b4a3c6cf32a0d269c4e98489fee (diff)
downloadcogl-7e1f05c84013bb91248d691091df00f4f634c6cf.tar.gz
Fix calculating the bounds when clipping from a primitive
When projecting the bounding rectangle of a primitive it was using the modelview matrix twice instead of the modelview and projection matrices so it was coming out with garbage. Reviewed-by: Robert Bragg <robert@linux.intel.com>
Diffstat (limited to 'cogl')
-rw-r--r--cogl/cogl-clip-stack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cogl/cogl-clip-stack.c b/cogl/cogl-clip-stack.c
index 2e909aec..40056bb8 100644
--- a/cogl/cogl-clip-stack.c
+++ b/cogl/cogl-clip-stack.c
@@ -276,7 +276,7 @@ _cogl_clip_stack_push_primitive (CoglClipStack *stack,
entry->bounds_y2 = bounds_y2;
cogl_matrix_entry_get (modelview_entry, &modelview);
- cogl_matrix_entry_get (modelview_entry, &projection);
+ cogl_matrix_entry_get (projection_entry, &projection);
get_transformed_corners (bounds_x1, bounds_y1, bounds_x2, bounds_y2,
&modelview,