2010-10-12 07:34:27 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2010-10-12 07:34:27 -04: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-10-12 07:34:27 -04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Robert Bragg <robert@linux.intel.com>
|
|
|
|
*/
|
|
|
|
|
2012-06-20 13:49:08 -04:00
|
|
|
#if !defined(__COGL_H_INSIDE__) && !defined(COGL_COMPILATION)
|
2010-10-12 07:34:27 -04:00
|
|
|
#error "Only <cogl/cogl.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2011-03-02 10:01:41 -05:00
|
|
|
#ifndef __COGL_ATTRIBUTE_BUFFER_H__
|
|
|
|
#define __COGL_ATTRIBUTE_BUFFER_H__
|
2010-10-12 07:34:27 -04:00
|
|
|
|
2012-02-17 16:46:39 -05:00
|
|
|
/* We forward declare the CoglAttributeBuffer type here to avoid some circular
|
|
|
|
* dependency issues with the following headers.
|
|
|
|
*/
|
|
|
|
typedef struct _CoglAttributeBuffer CoglAttributeBuffer;
|
|
|
|
|
2012-02-06 12:08:58 -05:00
|
|
|
#include <cogl/cogl-context.h>
|
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_BEGIN_DECLS
|
2010-10-12 07:34:27 -04:00
|
|
|
|
|
|
|
/**
|
2011-03-02 10:01:41 -05:00
|
|
|
* SECTION:cogl-attribute-buffer
|
|
|
|
* @short_description: Functions for creating and manipulating attribute
|
|
|
|
* buffers
|
2010-10-12 07:34:27 -04:00
|
|
|
*
|
|
|
|
* FIXME
|
|
|
|
*/
|
|
|
|
|
2012-02-25 15:27:21 -05:00
|
|
|
#define COGL_ATTRIBUTE_BUFFER(buffer) ((CoglAttributeBuffer *)(buffer))
|
|
|
|
|
2012-11-08 12:54:10 -05:00
|
|
|
/**
|
|
|
|
* cogl_attribute_buffer_new_with_size:
|
|
|
|
* @context: A #CoglContext
|
|
|
|
* @bytes: The number of bytes to allocate for vertex attribute data.
|
|
|
|
*
|
|
|
|
* Describes a new #CoglAttributeBuffer of @size bytes to contain
|
|
|
|
* arrays of vertex attribute data. Afterwards data can be set using
|
|
|
|
* cogl_buffer_set_data() or by mapping it into the application's
|
|
|
|
* address space using cogl_buffer_map().
|
|
|
|
*
|
|
|
|
* The underlying storage of this buffer isn't allocated by this
|
|
|
|
* function so that you have an opportunity to use the
|
|
|
|
* cogl_buffer_set_update_hint() and cogl_buffer_set_usage_hint()
|
|
|
|
* functions which may influence how the storage is allocated. The
|
|
|
|
* storage will be allocated once you upload data to the buffer.
|
|
|
|
*
|
|
|
|
* Note: You can assume this function always succeeds and won't return
|
|
|
|
* %NULL
|
|
|
|
*
|
2013-09-03 10:28:51 -04:00
|
|
|
* Return value: (transfer full): A newly allocated #CoglAttributeBuffer. Never %NULL.
|
2012-11-08 12:54:10 -05:00
|
|
|
*
|
|
|
|
* Stability: Unstable
|
|
|
|
*/
|
|
|
|
CoglAttributeBuffer *
|
|
|
|
cogl_attribute_buffer_new_with_size (CoglContext *context,
|
|
|
|
size_t bytes);
|
|
|
|
|
2010-10-12 07:34:27 -04:00
|
|
|
/**
|
2011-03-02 10:01:41 -05:00
|
|
|
* cogl_attribute_buffer_new:
|
2012-02-06 12:08:58 -05:00
|
|
|
* @context: A #CoglContext
|
2010-12-22 04:42:41 -05:00
|
|
|
* @bytes: The number of bytes to allocate for vertex attribute data.
|
2013-09-05 06:53:18 -04:00
|
|
|
* @data: (array length=bytes): An optional pointer to vertex data to
|
|
|
|
* upload immediately.
|
2010-10-12 07:34:27 -04:00
|
|
|
*
|
2012-11-08 12:54:10 -05:00
|
|
|
* Describes a new #CoglAttributeBuffer of @size bytes to contain
|
|
|
|
* arrays of vertex attribute data and also uploads @size bytes read
|
|
|
|
* from @data to the new buffer.
|
|
|
|
*
|
|
|
|
* You should never pass a %NULL data pointer.
|
|
|
|
*
|
|
|
|
* <note>This function does not report out-of-memory errors back to
|
|
|
|
* the caller by returning %NULL and so you can assume this function
|
|
|
|
* always succeeds.</note>
|
|
|
|
*
|
|
|
|
* <note>In the unlikely case that there is an out of memory problem
|
|
|
|
* then Cogl will abort the application with a message. If your
|
|
|
|
* application needs to gracefully handle out-of-memory errors then
|
|
|
|
* you can use cogl_attribute_buffer_new_with_size() and then
|
|
|
|
* explicitly catch errors with cogl_buffer_set_data() or
|
|
|
|
* cogl_buffer_map().</note>
|
2010-10-12 07:34:27 -04:00
|
|
|
*
|
2013-09-03 10:28:51 -04:00
|
|
|
* Return value: (transfer full): A newly allocated #CoglAttributeBuffer (never %NULL)
|
2010-11-16 03:49:55 -05:00
|
|
|
*
|
2010-10-12 07:34:27 -04:00
|
|
|
* Since: 1.4
|
|
|
|
* Stability: Unstable
|
|
|
|
*/
|
2011-03-02 10:01:41 -05:00
|
|
|
CoglAttributeBuffer *
|
2012-02-06 12:08:58 -05:00
|
|
|
cogl_attribute_buffer_new (CoglContext *context,
|
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
|
|
|
size_t bytes,
|
2012-02-06 12:08:58 -05:00
|
|
|
const void *data);
|
2010-10-12 07:34:27 -04:00
|
|
|
|
|
|
|
/**
|
2011-03-02 10:01:41 -05:00
|
|
|
* cogl_is_attribute_buffer:
|
2010-10-12 07:34:27 -04:00
|
|
|
* @object: A #CoglObject
|
|
|
|
*
|
2011-03-02 10:01:41 -05:00
|
|
|
* Gets whether the given object references a #CoglAttributeBuffer.
|
2010-10-12 07:34:27 -04:00
|
|
|
*
|
2012-04-16 09:14:10 -04:00
|
|
|
* Returns: %TRUE if @object references a #CoglAttributeBuffer,
|
2010-10-12 07:34:27 -04:00
|
|
|
* %FALSE otherwise
|
|
|
|
*
|
|
|
|
* Since: 1.4
|
|
|
|
* Stability: Unstable
|
|
|
|
*/
|
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
|
|
|
CoglBool
|
2011-03-02 10:01:41 -05:00
|
|
|
cogl_is_attribute_buffer (void *object);
|
2010-10-12 07:34:27 -04:00
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_END_DECLS
|
2010-10-12 07:34:27 -04:00
|
|
|
|
2011-03-02 10:01:41 -05:00
|
|
|
#endif /* __COGL_ATTRIBUTE_BUFFER_H__ */
|
2010-10-12 07:34:27 -04:00
|
|
|
|