2010-01-10 12:28:24 -05:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2010-01-10 12:28:24 -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 12:28:24 -05:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Damien Lespiau <damien.lespiau@intel.com>
|
2010-07-03 19:18:10 -04:00
|
|
|
* Robert Bragg <robert@linux.intel.com>
|
2010-01-10 12:28:24 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_BUFFER_PRIVATE_H__
|
|
|
|
#define __COGL_BUFFER_PRIVATE_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2010-10-27 13:54:57 -04:00
|
|
|
#include "cogl-object-private.h"
|
2010-01-10 12:28:24 -05:00
|
|
|
#include "cogl-buffer.h"
|
2012-02-17 20:19:17 -05:00
|
|
|
#include "cogl-context.h"
|
2012-03-23 14:05:46 -04:00
|
|
|
#include "cogl-gl-header.h"
|
2010-01-10 12:28:24 -05:00
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_BEGIN_DECLS
|
2010-01-10 12:28:24 -05:00
|
|
|
|
|
|
|
typedef struct _CoglBufferVtable CoglBufferVtable;
|
|
|
|
|
|
|
|
struct _CoglBufferVtable
|
|
|
|
{
|
2012-10-17 16:28:45 -04:00
|
|
|
void * (* map_range) (CoglBuffer *buffer,
|
|
|
|
size_t offset,
|
|
|
|
size_t size,
|
|
|
|
CoglBufferAccess access,
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglBufferMapHint hints,
|
|
|
|
CoglError **error);
|
2010-01-10 12:28:24 -05:00
|
|
|
|
2010-07-03 19:18:10 -04:00
|
|
|
void (* unmap) (CoglBuffer *buffer);
|
2010-01-10 12:28:24 -05:00
|
|
|
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglBool (* set_data) (CoglBuffer *buffer,
|
|
|
|
unsigned int offset,
|
|
|
|
const void *data,
|
|
|
|
unsigned int size,
|
|
|
|
CoglError **error);
|
2010-01-10 12:28:24 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef enum _CoglBufferFlags
|
|
|
|
{
|
2011-01-13 10:35:30 -05:00
|
|
|
COGL_BUFFER_FLAG_NONE = 0,
|
|
|
|
COGL_BUFFER_FLAG_BUFFER_OBJECT = 1UL << 0, /* real openGL buffer object */
|
|
|
|
COGL_BUFFER_FLAG_MAPPED = 1UL << 1,
|
|
|
|
COGL_BUFFER_FLAG_MAPPED_FALLBACK = 1UL << 2
|
2010-01-10 12:28:24 -05:00
|
|
|
} CoglBufferFlags;
|
|
|
|
|
2010-07-03 16:30:33 -04:00
|
|
|
typedef enum {
|
|
|
|
COGL_BUFFER_USAGE_HINT_TEXTURE,
|
2011-03-02 10:01:41 -05:00
|
|
|
COGL_BUFFER_USAGE_HINT_ATTRIBUTE_BUFFER,
|
2011-03-02 18:31:19 -05:00
|
|
|
COGL_BUFFER_USAGE_HINT_INDEX_BUFFER
|
2010-07-03 16:30:33 -04:00
|
|
|
} CoglBufferUsageHint;
|
|
|
|
|
2010-07-05 18:24:34 -04:00
|
|
|
typedef enum {
|
|
|
|
COGL_BUFFER_BIND_TARGET_PIXEL_PACK,
|
|
|
|
COGL_BUFFER_BIND_TARGET_PIXEL_UNPACK,
|
2011-03-02 10:01:41 -05:00
|
|
|
COGL_BUFFER_BIND_TARGET_ATTRIBUTE_BUFFER,
|
2011-03-02 18:31:19 -05:00
|
|
|
COGL_BUFFER_BIND_TARGET_INDEX_BUFFER,
|
2010-07-05 18:24:34 -04:00
|
|
|
|
|
|
|
COGL_BUFFER_BIND_TARGET_COUNT
|
|
|
|
} CoglBufferBindTarget;
|
|
|
|
|
2010-01-10 12:28:24 -05:00
|
|
|
struct _CoglBuffer
|
|
|
|
{
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglObject _parent;
|
2012-02-06 12:08:58 -05:00
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglContext *context;
|
2012-02-06 12:08:58 -05:00
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBufferVtable vtable;
|
2010-01-10 12:28:24 -05:00
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBufferBindTarget last_target;
|
2010-07-05 18:24:34 -04:00
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBufferFlags flags;
|
2010-01-10 12:28:24 -05:00
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
GLuint gl_handle; /* OpenGL handle */
|
|
|
|
unsigned int size; /* size of the buffer, in bytes */
|
|
|
|
CoglBufferUsageHint usage_hint;
|
|
|
|
CoglBufferUpdateHint update_hint;
|
2010-01-10 12:28:24 -05:00
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
/* points to the mapped memory when the CoglBuffer is a VBO, PBO,
|
|
|
|
* ... or points to allocated memory in the fallback paths */
|
|
|
|
uint8_t *data;
|
2010-10-26 11:06:46 -04:00
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
int immutable_ref;
|
2010-10-26 14:08:51 -04:00
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
unsigned int store_created:1;
|
2010-01-10 12:28:24 -05:00
|
|
|
};
|
|
|
|
|
2010-07-03 18:56:44 -04:00
|
|
|
/* This is used to register a type to the list of handle types that
|
|
|
|
will be considered a texture in cogl_is_texture() */
|
|
|
|
void
|
2012-01-24 11:24:26 -05:00
|
|
|
_cogl_buffer_register_buffer_type (const CoglObjectClass *klass);
|
2010-07-03 18:56:44 -04:00
|
|
|
|
|
|
|
#define COGL_BUFFER_DEFINE(TypeName, type_name) \
|
2014-02-23 12:24:11 -05:00
|
|
|
COGL_OBJECT_DEFINE_WITH_CODE \
|
2010-07-03 18:56:44 -04:00
|
|
|
(TypeName, type_name, \
|
2012-01-24 11:24:26 -05:00
|
|
|
_cogl_buffer_register_buffer_type (&_cogl_##type_name##_class))
|
2010-07-03 18:56:44 -04:00
|
|
|
|
2010-07-03 19:18:10 -04:00
|
|
|
void
|
2012-09-19 16:34:24 -04:00
|
|
|
_cogl_buffer_initialize (CoglBuffer *buffer,
|
|
|
|
CoglContext *context,
|
|
|
|
size_t size,
|
2010-07-05 18:24:34 -04:00
|
|
|
CoglBufferBindTarget default_target,
|
2012-09-19 16:34:24 -04:00
|
|
|
CoglBufferUsageHint usage_hint,
|
2010-07-03 19:18:10 -04:00
|
|
|
CoglBufferUpdateHint update_hint);
|
2010-07-03 18:56:44 -04:00
|
|
|
|
2010-07-03 19:18:10 -04:00
|
|
|
void
|
|
|
|
_cogl_buffer_fini (CoglBuffer *buffer);
|
|
|
|
|
2010-07-03 16:30:33 -04:00
|
|
|
CoglBufferUsageHint
|
|
|
|
_cogl_buffer_get_usage_hint (CoglBuffer *buffer);
|
|
|
|
|
2010-07-03 19:18:10 -04:00
|
|
|
GLenum
|
|
|
|
_cogl_buffer_access_to_gl_enum (CoglBufferAccess access);
|
|
|
|
|
2010-10-26 14:08:51 -04:00
|
|
|
CoglBuffer *
|
|
|
|
_cogl_buffer_immutable_ref (CoglBuffer *buffer);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_buffer_immutable_unref (CoglBuffer *buffer);
|
|
|
|
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglBool
|
|
|
|
_cogl_buffer_set_data (CoglBuffer *buffer,
|
|
|
|
size_t offset,
|
|
|
|
const void *data,
|
|
|
|
size_t size,
|
|
|
|
CoglError **error);
|
|
|
|
|
|
|
|
void *
|
|
|
|
_cogl_buffer_map (CoglBuffer *buffer,
|
|
|
|
CoglBufferAccess access,
|
|
|
|
CoglBufferMapHint hints,
|
|
|
|
CoglError **error);
|
|
|
|
|
2012-10-17 16:36:10 -04:00
|
|
|
/* This is a wrapper around cogl_buffer_map_range for internal use
|
|
|
|
when we want to map the buffer for write only to replace the entire
|
2011-01-13 10:35:30 -05:00
|
|
|
contents. If the map fails then it will fallback to writing to a
|
|
|
|
temporary buffer. When _cogl_buffer_unmap_for_fill_or_fallback is
|
|
|
|
called the temporary buffer will be copied into the array. Note
|
|
|
|
that these calls share a global array so they can not be nested. */
|
|
|
|
void *
|
2012-10-17 16:36:10 -04:00
|
|
|
_cogl_buffer_map_range_for_fill_or_fallback (CoglBuffer *buffer,
|
|
|
|
size_t offset,
|
|
|
|
size_t size);
|
|
|
|
void *
|
2011-01-13 10:35:30 -05:00
|
|
|
_cogl_buffer_map_for_fill_or_fallback (CoglBuffer *buffer);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_buffer_unmap_for_fill_or_fallback (CoglBuffer *buffer);
|
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_END_DECLS
|
2010-01-10 12:28:24 -05:00
|
|
|
|
|
|
|
#endif /* __COGL_BUFFER_PRIVATE_H__ */
|