2010-01-10 13:04:29 -05:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2010-01-10 13:04:29 -05:00
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Intel Corporation.
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2010-03-01 07:56:10 -05:00
|
|
|
*
|
|
|
|
*
|
2010-01-10 13:04:29 -05:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Damien Lespiau <damien.lespiau@intel.com>
|
2010-07-03 18:46:03 -04:00
|
|
|
* Robert Bragg <robert@linux.intel.com>
|
2010-01-10 13:04:29 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* For an overview of the functionality implemented here, please see
|
2011-03-02 10:19:57 -05:00
|
|
|
* cogl-buffer-array.h, which contains the gtk-doc section overview for the
|
2010-01-10 13:04:29 -05:00
|
|
|
* Pixel Buffers API.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
|
|
|
|
2012-02-13 18:02:04 -05:00
|
|
|
#include "cogl-private.h"
|
2010-01-10 13:04:29 -05:00
|
|
|
#include "cogl-util.h"
|
2010-11-04 18:25:52 -04:00
|
|
|
#include "cogl-context-private.h"
|
2010-07-03 15:24:36 -04:00
|
|
|
#include "cogl-object.h"
|
2011-03-02 10:19:57 -05:00
|
|
|
#include "cogl-pixel-buffer-private.h"
|
|
|
|
#include "cogl-pixel-buffer.h"
|
2013-09-02 11:02:42 -04:00
|
|
|
#include "cogl-gtype-private.h"
|
2010-01-10 13:04:29 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* GL/GLES compatibility defines for the buffer API:
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if defined (HAVE_COGL_GL)
|
|
|
|
|
|
|
|
#ifndef GL_PIXEL_UNPACK_BUFFER
|
|
|
|
#define GL_PIXEL_UNPACK_BUFFER GL_PIXEL_UNPACK_BUFFER_ARB
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef GL_PIXEL_PACK_BUFFER
|
|
|
|
#define GL_PIXEL_PACK_BUFFER GL_PIXEL_PACK_BUFFER_ARB
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
cogl: improves header and coding style consistency
We've had complaints that our Cogl code/headers are a bit "special" so
this is a first pass at tidying things up by giving them some
consistency. These changes are all consistent with how new code in Cogl
is being written, but the style isn't consistently applied across all
code yet.
There are two parts to this patch; but since each one required a large
amount of effort to maintain tidy indenting it made sense to combine the
changes to reduce the time spent re indenting the same lines.
The first change is to use a consistent style for declaring function
prototypes in headers. Cogl headers now consistently use this style for
prototypes:
return_type
cogl_function_name (CoglType arg0,
CoglType arg1);
Not everyone likes this style, but it seems that most of the currently
active Cogl developers agree on it.
The second change is to constrain the use of redundant glib data types
in Cogl. Uses of gint, guint, gfloat, glong, gulong and gchar have all
been replaced with int, unsigned int, float, long, unsigned long and char
respectively. When talking about pixel data; use of guchar has been
replaced with guint8, otherwise unsigned char can be used.
The glib types that we continue to use for portability are gboolean,
gint{8,16,32,64}, guint{8,16,32,64} and gsize.
The general intention is that Cogl should look palatable to the widest
range of C programmers including those outside the Gnome community so
- especially for the public API - we want to minimize the number of
foreign looking typedefs.
2010-02-09 20:57:32 -05:00
|
|
|
static void
|
2011-03-02 10:19:57 -05:00
|
|
|
_cogl_pixel_buffer_free (CoglPixelBuffer *buffer);
|
2010-01-10 13:04:29 -05:00
|
|
|
|
2011-03-02 10:19:57 -05:00
|
|
|
COGL_BUFFER_DEFINE (PixelBuffer, pixel_buffer)
|
2013-09-02 11:02:42 -04:00
|
|
|
COGL_GTYPE_DEFINE_CLASS (PixelBuffer, pixel_buffer)
|
2010-01-10 13:04:29 -05:00
|
|
|
|
2012-11-08 12:54:10 -05:00
|
|
|
static CoglPixelBuffer *
|
|
|
|
_cogl_pixel_buffer_new (CoglContext *context,
|
|
|
|
size_t size,
|
|
|
|
const void *data,
|
|
|
|
CoglError **error)
|
2010-01-10 13:04:29 -05:00
|
|
|
{
|
2011-03-02 10:19:57 -05:00
|
|
|
CoglPixelBuffer *pixel_buffer = g_slice_new0 (CoglPixelBuffer);
|
|
|
|
CoglBuffer *buffer = COGL_BUFFER (pixel_buffer);
|
2010-07-05 20:21:43 -04:00
|
|
|
|
2010-01-10 13:04:29 -05:00
|
|
|
/* parent's constructor */
|
|
|
|
_cogl_buffer_initialize (buffer,
|
2012-02-06 12:08:58 -05:00
|
|
|
context,
|
2010-01-10 13:04:29 -05:00
|
|
|
size,
|
2010-07-05 18:24:34 -04:00
|
|
|
COGL_BUFFER_BIND_TARGET_PIXEL_UNPACK,
|
2010-02-08 12:11:43 -05:00
|
|
|
COGL_BUFFER_USAGE_HINT_TEXTURE,
|
2010-01-10 13:04:29 -05:00
|
|
|
COGL_BUFFER_UPDATE_HINT_STATIC);
|
|
|
|
|
2012-02-25 15:04:45 -05:00
|
|
|
_cogl_pixel_buffer_object_new (pixel_buffer);
|
2010-01-10 13:04:29 -05:00
|
|
|
|
2012-02-25 15:04:45 -05:00
|
|
|
if (data)
|
2012-11-08 12:54:10 -05:00
|
|
|
{
|
|
|
|
if (!_cogl_buffer_set_data (COGL_BUFFER (pixel_buffer),
|
|
|
|
0,
|
|
|
|
data,
|
|
|
|
size,
|
|
|
|
error))
|
|
|
|
{
|
|
|
|
cogl_object_unref (pixel_buffer);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2012-02-25 15:04:45 -05:00
|
|
|
|
|
|
|
return pixel_buffer;
|
2010-01-10 13:04:29 -05:00
|
|
|
}
|
|
|
|
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglPixelBuffer *
|
|
|
|
cogl_pixel_buffer_new (CoglContext *context,
|
|
|
|
size_t size,
|
|
|
|
const void *data)
|
|
|
|
{
|
|
|
|
CoglError *ignore_error = NULL;
|
|
|
|
CoglPixelBuffer *buffer =
|
|
|
|
_cogl_pixel_buffer_new (context, size, data, &ignore_error);
|
|
|
|
if (!buffer)
|
|
|
|
cogl_error_free (ignore_error);
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2010-01-10 13:04:29 -05:00
|
|
|
static void
|
2011-03-02 10:19:57 -05:00
|
|
|
_cogl_pixel_buffer_free (CoglPixelBuffer *buffer)
|
2010-01-10 13:04:29 -05:00
|
|
|
{
|
|
|
|
/* parent's destructor */
|
|
|
|
_cogl_buffer_fini (COGL_BUFFER (buffer));
|
|
|
|
|
2011-03-02 10:19:57 -05:00
|
|
|
g_slice_free (CoglPixelBuffer, buffer);
|
2010-01-10 13:04:29 -05:00
|
|
|
}
|
|
|
|
|