mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 16:40:41 -05:00
de27da0e5b
* This adds GLfixed -> GLfloat conversion * redefines cogl_wrap_glBlahx macros as glBlahf * Other misc fixes (mostly corresponding to cogl/gl equivalents)
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
diff --git a/clutter/cogl/gles/cogl-texture.c b/clutter/cogl/gles/cogl-texture.c
|
|
index fb628b0..85bfc2b 100644
|
|
--- a/clutter/cogl/gles/cogl-texture.c
|
|
+++ b/clutter/cogl/gles/cogl-texture.c
|
|
@@ -39,6 +39,7 @@
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
+#include <math.h>
|
|
|
|
#define glVertexPointer cogl_wrap_glVertexPointer
|
|
#define glTexCoordPointer cogl_wrap_glTexCoordPointer
|
|
@@ -767,7 +768,7 @@ _cogl_texture_upload_subregion_to_gl (CoglTexture *tex,
|
|
guint wx, wy;
|
|
|
|
src = source_bmp->data
|
|
- + (src_y + (y_iter.intersect_start)
|
|
+ + (src_y + ((int)y_iter.intersect_start)
|
|
- dst_y)
|
|
* source_bmp->rowstride
|
|
+ (src_x + x_span->start + x_span->size - x_span->waste
|
|
@@ -812,7 +813,7 @@ _cogl_texture_upload_subregion_to_gl (CoglTexture *tex,
|
|
guint copy_width;
|
|
|
|
src = source_bmp->data
|
|
- + (src_x + (x_iter.intersect_start)
|
|
+ + (src_x + ((int)x_iter.intersect_start)
|
|
- dst_x)
|
|
* bpp
|
|
+ (src_y + y_span->start + y_span->size - y_span->waste
|