From 82c6be52690e33359ab8fb1ea08b94afdcbc753d Mon Sep 17 00:00:00 2001 From: Bastian Winkler Date: Tue, 9 Feb 2010 15:19:03 +0100 Subject: [PATCH] cogl-buffer: Use correct argument types in cogl_buffer_set_data_EXP offset and size arguments are gsize in cogl-buffer.h http://bugzilla.openedhand.com/show_bug.cgi?id=1980 Signed-off-by: Emmanuele Bassi --- cogl/cogl-buffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogl/cogl-buffer.c b/cogl/cogl-buffer.c index 89e0a0579..a74879da0 100644 --- a/cogl/cogl-buffer.c +++ b/cogl/cogl-buffer.c @@ -272,9 +272,9 @@ cogl_buffer_unmap_EXP (CoglHandle handle) gboolean cogl_buffer_set_data_EXP (CoglHandle handle, - guint offset, + gsize offset, const guchar *data, - guint size) + gsize size) { CoglBuffer *buffer;