2009-04-27 10:48:12 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
2008-10-30 13:57:41 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2009-04-27 10:48:12 -04:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* Copyright (C) 2007,2008,2009,2012 Intel Corporation.
|
2008-10-30 13:57:41 -04:00
|
|
|
*
|
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:
|
2008-10-30 13:57:41 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2008-10-30 13:57:41 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* 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
|
|
|
*
|
|
|
|
*
|
2008-10-30 13:57:41 -04:00
|
|
|
*/
|
|
|
|
|
2012-06-20 13:49:08 -04:00
|
|
|
#if !defined(__COGL_H_INSIDE__) && !defined(COGL_COMPILATION)
|
2008-10-30 13:25:00 -04:00
|
|
|
#error "Only <cogl/cogl.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __COGL_OFFSCREEN_H__
|
|
|
|
#define __COGL_OFFSCREEN_H__
|
|
|
|
|
|
|
|
#include <cogl/cogl-types.h>
|
2011-08-24 16:30:34 -04:00
|
|
|
#include <cogl/cogl-texture.h>
|
2008-10-30 13:25:00 -04:00
|
|
|
|
2013-09-02 11:02:42 -04:00
|
|
|
#ifdef COGL_HAS_GTYPE_SUPPORT
|
|
|
|
#include <glib-object.h>
|
|
|
|
#endif
|
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_BEGIN_DECLS
|
2008-10-30 13:25:00 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:cogl-offscreen
|
2012-12-30 11:37:36 -05:00
|
|
|
* @short_description: Functions for creating and manipulating offscreen
|
2009-11-26 12:47:17 -05:00
|
|
|
* framebuffers.
|
2008-10-30 13:25:00 -04:00
|
|
|
*
|
2009-11-26 12:47:17 -05:00
|
|
|
* Cogl allows creating and operating on offscreen framebuffers.
|
2008-10-30 13:25:00 -04:00
|
|
|
*/
|
|
|
|
|
2012-02-18 10:22:15 -05:00
|
|
|
typedef struct _CoglOffscreen CoglOffscreen;
|
|
|
|
|
|
|
|
#define COGL_OFFSCREEN(X) ((CoglOffscreen *)X)
|
|
|
|
|
2013-09-02 11:02:42 -04:00
|
|
|
#ifdef COGL_HAS_GTYPE_SUPPORT
|
|
|
|
/**
|
|
|
|
* cogl_offscreen_get_gtype:
|
|
|
|
*
|
|
|
|
* Returns: a #GType that can be used with the GLib type system.
|
|
|
|
*/
|
|
|
|
GType cogl_offscreen_get_gtype (void);
|
|
|
|
#endif
|
|
|
|
|
2008-10-30 13:25:00 -04:00
|
|
|
/* Offscreen api */
|
|
|
|
|
2013-08-16 17:43:19 -04:00
|
|
|
/**
|
|
|
|
* cogl_offscreen_new_with_texture:
|
|
|
|
* @texture: A #CoglTexture pointer
|
|
|
|
*
|
|
|
|
* This creates an offscreen framebuffer object using the given
|
|
|
|
* @texture as the primary color buffer. It doesn't just initialize
|
|
|
|
* the contents of the offscreen buffer with the @texture; they are
|
|
|
|
* tightly bound so that drawing to the offscreen buffer effectively
|
|
|
|
* updates the contents of the given texture. You don't need to
|
|
|
|
* destroy the offscreen buffer before you can use the @texture again.
|
|
|
|
*
|
|
|
|
* <note>This api only works with low-level #CoglTexture types such as
|
|
|
|
* #CoglTexture2D, #CoglTexture3D and #CoglTextureRectangle, and not
|
|
|
|
* with meta-texture types such as #CoglTexture2DSliced.</note>
|
|
|
|
*
|
|
|
|
* The storage for the framebuffer is actually allocated lazily
|
|
|
|
* so this function will never return %NULL to indicate a runtime
|
|
|
|
* error. This means it is still possible to configure the framebuffer
|
|
|
|
* before it is really allocated.
|
|
|
|
*
|
|
|
|
* Simple applications without full error handling can simply rely on
|
|
|
|
* Cogl to lazily allocate the storage of framebuffers but you should
|
|
|
|
* be aware that if Cogl encounters an error (such as running out of
|
|
|
|
* GPU memory) then your application will simply abort with an error
|
|
|
|
* message. If you need to be able to catch such exceptions at runtime
|
|
|
|
* then you can explicitly allocate your framebuffer when you have
|
|
|
|
* finished configuring it by calling cogl_framebuffer_allocate() and
|
|
|
|
* passing in a #CoglError argument to catch any exceptions.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full): a newly instantiated #CoglOffscreen
|
|
|
|
* framebuffer.
|
|
|
|
*/
|
|
|
|
CoglOffscreen *
|
|
|
|
cogl_offscreen_new_with_texture (CoglTexture *texture);
|
|
|
|
|
2008-10-30 13:25:00 -04:00
|
|
|
/**
|
|
|
|
* cogl_offscreen_new_to_texture:
|
2011-08-24 16:30:34 -04:00
|
|
|
* @texture: A #CoglTexture pointer
|
2008-10-30 13:25:00 -04:00
|
|
|
*
|
2011-08-24 16:30:34 -04:00
|
|
|
* This creates an offscreen buffer object using the given @texture as the
|
2009-04-30 17:19:43 -04:00
|
|
|
* primary color buffer. It doesn't just initialize the contents of the
|
2011-08-24 16:30:34 -04:00
|
|
|
* offscreen buffer with the @texture; they are tightly bound so that
|
2009-04-30 17:19:43 -04:00
|
|
|
* drawing to the offscreen buffer effectivly updates the contents of the
|
|
|
|
* given texture. You don't need to destroy the offscreen buffer before
|
2011-08-24 16:30:34 -04:00
|
|
|
* you can use the @texture again.
|
2009-04-27 10:48:12 -04:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* <note>This only works with low-level #CoglTexture types such as
|
|
|
|
* #CoglTexture2D, #CoglTexture3D and #CoglTextureRectangle, and not
|
|
|
|
* with meta-texture types such as #CoglTexture2DSliced.</note>
|
2008-10-30 13:25:00 -04:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* Return value: (transfer full): a newly instantiated #CoglOffscreen
|
|
|
|
* framebuffer or %NULL if it wasn't possible to create the
|
2010-09-06 11:11:46 -04:00
|
|
|
* buffer.
|
2013-08-16 17:43:19 -04:00
|
|
|
* Deprecated: 1.16: Use cogl_offscreen_new_with_texture instead.
|
2008-10-30 13:25:00 -04:00
|
|
|
*/
|
2013-08-26 06:51:55 -04:00
|
|
|
COGL_DEPRECATED_IN_1_16_FOR (cogl_offscreen_new_with_texture)
|
2012-02-18 10:22:15 -05:00
|
|
|
CoglOffscreen *
|
2013-08-26 06:51:55 -04:00
|
|
|
cogl_offscreen_new_to_texture (CoglTexture *texture);
|
2008-10-30 13:25:00 -04:00
|
|
|
|
|
|
|
/**
|
2009-11-26 12:47:17 -05:00
|
|
|
* cogl_is_offscreen:
|
2012-02-18 10:22:15 -05:00
|
|
|
* @object: A pointer to a #CoglObject
|
2009-04-30 17:19:43 -04:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* Determines whether the given #CoglObject references an offscreen
|
|
|
|
* framebuffer object.
|
2008-10-30 13:25:00 -04:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* Returns: %TRUE if @object is a #CoglOffscreen framebuffer,
|
|
|
|
* %FALSE otherwise
|
2008-10-30 13:25:00 -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
|
|
|
CoglBool
|
2012-02-18 10:22:15 -05:00
|
|
|
cogl_is_offscreen (void *object);
|
2009-11-26 12:47:17 -05:00
|
|
|
|
2008-10-30 13:25:00 -04:00
|
|
|
/**
|
2009-11-26 12:47:17 -05:00
|
|
|
* cogl_offscreen_ref:
|
2012-02-18 10:22:15 -05:00
|
|
|
* @offscreen: A pointer to a #CoglOffscreen framebuffer
|
2008-10-30 13:25:00 -04:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* Increments the reference count on the @offscreen framebuffer.
|
2008-10-30 13:25:00 -04:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* Return value: (transfer none): For convenience it returns the
|
|
|
|
* given @offscreen
|
2009-11-26 12:47:17 -05:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* Deprecated: 1.2: cogl_object_ref() should be used in new code.
|
2008-10-30 13:25:00 -04:00
|
|
|
*/
|
2013-07-24 05:44:56 -04:00
|
|
|
COGL_DEPRECATED_FOR (cogl_object_ref)
|
2012-02-18 10:22:15 -05:00
|
|
|
void *
|
2013-07-24 05:44:56 -04:00
|
|
|
cogl_offscreen_ref (void *offscreen);
|
2008-10-30 13:25:00 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* cogl_offscreen_unref:
|
2012-02-18 10:22:15 -05:00
|
|
|
* @offscreen: A pointer to a #CoglOffscreen framebuffer
|
2008-10-30 13:25:00 -04:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* Decreases the reference count for the @offscreen buffer and frees it when
|
2009-04-30 17:19:43 -04:00
|
|
|
* the count reaches 0.
|
2009-11-26 12:47:17 -05:00
|
|
|
*
|
2012-02-18 10:22:15 -05:00
|
|
|
* Deprecated: 1.2: cogl_object_unref() should be used in new code.
|
2008-10-30 13:25:00 -04:00
|
|
|
*/
|
2013-07-24 05:44:56 -04:00
|
|
|
COGL_DEPRECATED_FOR (cogl_object_unref)
|
2012-02-18 10:22:15 -05:00
|
|
|
void
|
2013-07-24 05:44:56 -04:00
|
|
|
cogl_offscreen_unref (void *offscreen);
|
2008-10-30 13:25:00 -04:00
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_END_DECLS
|
2008-10-30 13:25:00 -04:00
|
|
|
|
|
|
|
#endif /* __COGL_OFFSCREEN_H__ */
|