2010-10-12 07:34:27 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Intel Corporation.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
* Return value: A newly allocated #CoglAttributeBuffer. Never %NULL.
|
|
|
|
*
|
|
|
|
* 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.
|
2010-11-16 03:49:55 -05:00
|
|
|
* @data: 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
|
|
|
*
|
2012-11-08 12:54:10 -05:00
|
|
|
* Return value: 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
|
|
|
|