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 <ebassi@linux.intel.com>
This commit is contained in:
Bastian Winkler 2010-02-09 15:19:03 +01:00 committed by Emmanuele Bassi
parent ea0d0f1231
commit 82c6be5269

View File

@ -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;