2008-04-25 09:37:36 -04:00
|
|
|
/*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Cogl
|
2008-04-25 09:37:36 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2008-04-25 09:37:36 -04:00
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* Copyright (C) 2007,2008,2009 Intel Corporation.
|
2008-04-25 09:37:36 -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-04-25 09:37:36 -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-04-25 09:37:36 -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-04-25 09:37:36 -04:00
|
|
|
*/
|
|
|
|
|
2009-07-27 19:37:11 -04:00
|
|
|
#ifndef __COGL_TEXTURE_PRIVATE_H
|
|
|
|
#define __COGL_TEXTURE_PRIVATE_H
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2009-04-30 13:00:22 -04:00
|
|
|
#include "cogl-bitmap-private.h"
|
2012-04-16 09:14:10 -04:00
|
|
|
#include "cogl-object-private.h"
|
2010-10-27 13:54:57 -04:00
|
|
|
#include "cogl-pipeline-private.h"
|
2011-10-08 09:13:03 -04:00
|
|
|
#include "cogl-spans.h"
|
2012-02-17 20:19:17 -05:00
|
|
|
#include "cogl-meta-texture.h"
|
2012-02-25 15:04:45 -05:00
|
|
|
#include "cogl-framebuffer.h"
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2013-06-23 11:18:18 -04:00
|
|
|
#ifdef COGL_HAS_EGL_SUPPORT
|
|
|
|
#include "cogl-egl-defines.h"
|
|
|
|
#endif
|
|
|
|
|
2009-11-26 12:32:52 -05:00
|
|
|
typedef struct _CoglTextureVtable CoglTextureVtable;
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2010-03-01 16:49:04 -05:00
|
|
|
/* Encodes three possibiloities result of transforming a quad */
|
|
|
|
typedef enum {
|
|
|
|
/* quad doesn't cross the boundaries of a texture */
|
|
|
|
COGL_TRANSFORM_NO_REPEAT,
|
|
|
|
/* quad crosses boundaries, hardware wrap mode can handle */
|
|
|
|
COGL_TRANSFORM_HARDWARE_REPEAT,
|
|
|
|
/* quad crosses boundaries, needs software fallback;
|
|
|
|
* for a sliced texture, this might not actually involve
|
|
|
|
* repeating, just a quad crossing multiple slices */
|
|
|
|
COGL_TRANSFORM_SOFTWARE_REPEAT,
|
|
|
|
} CoglTransformResult;
|
|
|
|
|
2010-06-09 12:39:59 -04:00
|
|
|
/* Flags given to the pre_paint method */
|
|
|
|
typedef enum {
|
|
|
|
/* The texture is going to be used with filters that require
|
|
|
|
mipmapping. This gives the texture the opportunity to
|
|
|
|
automatically update the mipmap tree */
|
|
|
|
COGL_TEXTURE_NEEDS_MIPMAP = 1
|
|
|
|
} CoglTexturePrePaintFlags;
|
|
|
|
|
2009-11-25 08:39:45 -05:00
|
|
|
struct _CoglTextureVtable
|
|
|
|
{
|
|
|
|
/* Virtual functions that must be implemented for a texture
|
|
|
|
backend */
|
|
|
|
|
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 is_primitive;
|
2012-04-04 10:09:43 -04:00
|
|
|
|
2012-11-22 18:01:08 -05:00
|
|
|
CoglBool (* allocate) (CoglTexture *tex,
|
|
|
|
CoglError **error);
|
|
|
|
|
2010-07-08 10:15:22 -04:00
|
|
|
/* This should update the specified sub region of the texture with a
|
2011-08-31 12:22:20 -04:00
|
|
|
sub region of the given bitmap. The bitmap is not converted
|
2013-06-07 19:28:14 -04:00
|
|
|
before being set so the caller is expected to have called
|
|
|
|
_cogl_bitmap_convert_for_upload with a suitable internal_format
|
|
|
|
before passing here */
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglBool (* set_region) (CoglTexture *tex,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int dst_x,
|
|
|
|
int dst_y,
|
|
|
|
int dst_width,
|
|
|
|
int dst_height,
|
2012-11-09 12:55:54 -05:00
|
|
|
int level,
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglBitmap *bitmap,
|
|
|
|
CoglError **error);
|
2009-11-25 08:39:45 -05:00
|
|
|
|
2010-07-08 08:54:37 -04:00
|
|
|
/* This should copy the image data of the texture into @data. The
|
|
|
|
requested format will have been first passed through
|
2011-07-07 07:48:24 -04:00
|
|
|
ctx->texture_driver->find_best_gl_get_data_format so it should
|
2010-07-08 08:54:37 -04:00
|
|
|
always be a format that is valid for GL (ie, no conversion should
|
|
|
|
be necessary). */
|
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 (* get_data) (CoglTexture *tex,
|
|
|
|
CoglPixelFormat format,
|
2012-09-26 12:05:01 -04:00
|
|
|
int rowstride,
|
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
|
|
|
uint8_t *data);
|
2009-11-25 08:39:45 -05:00
|
|
|
|
|
|
|
void (* foreach_sub_texture_in_region) (CoglTexture *tex,
|
|
|
|
float virtual_tx_1,
|
|
|
|
float virtual_ty_1,
|
|
|
|
float virtual_tx_2,
|
|
|
|
float virtual_ty_2,
|
2011-10-08 09:13:03 -04:00
|
|
|
CoglMetaTextureCallback callback,
|
2009-11-25 08:39:45 -05:00
|
|
|
void *user_data);
|
|
|
|
|
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
|
|
|
int (* get_max_waste) (CoglTexture *tex);
|
2009-11-25 08:39:45 -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
|
|
|
CoglBool (* is_sliced) (CoglTexture *tex);
|
2009-11-25 08:39:45 -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
|
|
|
CoglBool (* can_hardware_repeat) (CoglTexture *tex);
|
2009-11-25 08:39:45 -05:00
|
|
|
|
|
|
|
void (* transform_coords_to_gl) (CoglTexture *tex,
|
|
|
|
float *s,
|
|
|
|
float *t);
|
2010-03-01 16:49:04 -05:00
|
|
|
CoglTransformResult (* transform_quad_coords_to_gl) (CoglTexture *tex,
|
|
|
|
float *coords);
|
2009-11-25 08:39:45 -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
|
|
|
CoglBool (* get_gl_texture) (CoglTexture *tex,
|
2009-11-25 08:39:45 -05:00
|
|
|
GLuint *out_gl_handle,
|
|
|
|
GLenum *out_gl_target);
|
|
|
|
|
2012-09-10 15:35:39 -04:00
|
|
|
/* OpenGL driver specific virtual function */
|
|
|
|
void (* gl_flush_legacy_texobj_filters) (CoglTexture *tex,
|
|
|
|
GLenum min_filter,
|
|
|
|
GLenum mag_filter);
|
2009-11-25 08:39:45 -05:00
|
|
|
|
2010-06-09 12:39:59 -04:00
|
|
|
void (* pre_paint) (CoglTexture *tex, CoglTexturePrePaintFlags flags);
|
2010-01-18 04:22:04 -05:00
|
|
|
void (* ensure_non_quad_rendering) (CoglTexture *tex);
|
2009-11-25 08:39:45 -05:00
|
|
|
|
2012-09-10 15:35:39 -04:00
|
|
|
/* OpenGL driver specific virtual function */
|
|
|
|
void (* gl_flush_legacy_texobj_wrap_modes) (CoglTexture *tex,
|
|
|
|
GLenum wrap_mode_s,
|
|
|
|
GLenum wrap_mode_t,
|
|
|
|
GLenum wrap_mode_p);
|
2009-11-26 13:58:17 -05:00
|
|
|
|
|
|
|
CoglPixelFormat (* get_format) (CoglTexture *tex);
|
|
|
|
GLenum (* get_gl_format) (CoglTexture *tex);
|
2010-04-26 05:01:43 -04:00
|
|
|
|
2012-02-09 06:19:04 -05:00
|
|
|
CoglTextureType (* get_type) (CoglTexture *tex);
|
|
|
|
|
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 (* is_foreign) (CoglTexture *tex);
|
2012-04-04 10:09:43 -04:00
|
|
|
|
|
|
|
/* Only needs to be implemented if is_primitive == TRUE */
|
|
|
|
void (* set_auto_mipmap) (CoglTexture *texture,
|
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 value);
|
2009-11-25 08:39:45 -05:00
|
|
|
};
|
|
|
|
|
2013-06-23 11:18:18 -04:00
|
|
|
typedef enum _CoglTextureSoureType {
|
|
|
|
COGL_TEXTURE_SOURCE_TYPE_SIZED = 1,
|
|
|
|
COGL_TEXTURE_SOURCE_TYPE_BITMAP,
|
|
|
|
COGL_TEXTURE_SOURCE_TYPE_EGL_IMAGE,
|
|
|
|
COGL_TEXTURE_SOURCE_TYPE_GL_FOREIGN
|
|
|
|
} CoglTextureSourceType;
|
|
|
|
|
|
|
|
typedef struct _CoglTextureLoader
|
|
|
|
{
|
|
|
|
CoglTextureSourceType src_type;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int depth; /* for 3d textures */
|
|
|
|
} sized;
|
|
|
|
struct {
|
|
|
|
CoglBitmap *bitmap;
|
|
|
|
int height; /* for 3d textures */
|
|
|
|
int depth; /* for 3d textures */
|
|
|
|
CoglBool can_convert_in_place;
|
|
|
|
} bitmap;
|
|
|
|
#if defined (COGL_HAS_EGL_SUPPORT) && defined (EGL_KHR_image_base)
|
|
|
|
struct {
|
|
|
|
EGLImageKHR image;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
CoglPixelFormat format;
|
|
|
|
} egl_image;
|
|
|
|
#endif
|
|
|
|
struct {
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
unsigned int gl_handle;
|
|
|
|
CoglPixelFormat format;
|
|
|
|
} gl_foreign;
|
|
|
|
} src;
|
|
|
|
} CoglTextureLoader;
|
|
|
|
|
2009-11-25 08:39:45 -05:00
|
|
|
struct _CoglTexture
|
|
|
|
{
|
2012-09-07 10:26:34 -04:00
|
|
|
CoglObject _parent;
|
|
|
|
CoglContext *context;
|
2013-06-23 11:18:18 -04:00
|
|
|
CoglTextureLoader *loader;
|
2012-09-07 10:26:34 -04:00
|
|
|
GList *framebuffers;
|
2012-11-09 12:55:54 -05:00
|
|
|
int max_level;
|
2012-11-22 16:46:54 -05:00
|
|
|
int width;
|
|
|
|
int height;
|
2012-11-22 18:01:08 -05:00
|
|
|
CoglBool allocated;
|
2013-06-23 11:18:18 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal format
|
|
|
|
*/
|
|
|
|
CoglTextureComponents components;
|
|
|
|
unsigned int premultiplied:1;
|
|
|
|
|
2009-11-25 08:39:45 -05:00
|
|
|
const CoglTextureVtable *vtable;
|
|
|
|
};
|
|
|
|
|
2010-04-26 05:01:43 -04:00
|
|
|
typedef enum _CoglTextureChangeFlags
|
|
|
|
{
|
|
|
|
/* Whenever the internals of a texture are changed such that the
|
|
|
|
* underlying GL textures that represent the CoglTexture change then
|
|
|
|
* we notify cogl-material.c via
|
2010-10-27 13:54:57 -04:00
|
|
|
* _cogl_pipeline_texture_pre_change_notify
|
2010-04-26 05:01:43 -04:00
|
|
|
*/
|
|
|
|
COGL_TEXTURE_CHANGE_GL_TEXTURES
|
|
|
|
|
|
|
|
} CoglTextureChangeFlags;
|
|
|
|
|
2010-07-13 13:41:01 -04:00
|
|
|
typedef struct _CoglTexturePixel CoglTexturePixel;
|
|
|
|
|
|
|
|
/* This is used by the texture backends to store the first pixel of
|
|
|
|
each GL texture. This is only used when glGenerateMipmap is not
|
|
|
|
available so that we can temporarily set GL_GENERATE_MIPMAP and
|
|
|
|
reupload a pixel */
|
|
|
|
struct _CoglTexturePixel
|
|
|
|
{
|
|
|
|
/* We need to store the format of the pixel because we store the
|
|
|
|
data in the source format which might end up being different for
|
|
|
|
each slice if a subregion is updated with a different format */
|
|
|
|
GLenum gl_format;
|
|
|
|
GLenum gl_type;
|
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
|
|
|
uint8_t data[4];
|
2010-07-13 13:41:01 -04:00
|
|
|
};
|
|
|
|
|
2011-01-06 08:25:45 -05:00
|
|
|
void
|
|
|
|
_cogl_texture_init (CoglTexture *texture,
|
2012-09-07 10:26:34 -04:00
|
|
|
CoglContext *ctx,
|
2012-11-22 16:46:54 -05:00
|
|
|
int width,
|
|
|
|
int height,
|
2013-07-01 20:48:54 -04:00
|
|
|
CoglPixelFormat src_format,
|
2013-06-23 11:18:18 -04:00
|
|
|
CoglTextureLoader *loader,
|
2011-01-06 08:25:45 -05:00
|
|
|
const CoglTextureVtable *vtable);
|
|
|
|
|
2010-04-26 05:01:43 -04:00
|
|
|
void
|
|
|
|
_cogl_texture_free (CoglTexture *texture);
|
|
|
|
|
2010-06-11 08:50:36 -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_texture_register_texture_type (const CoglObjectClass *klass);
|
2010-06-11 08:50:36 -04:00
|
|
|
|
|
|
|
#define COGL_TEXTURE_DEFINE(TypeName, type_name) \
|
2012-04-16 09:14:10 -04:00
|
|
|
COGL_OBJECT_DEFINE_WITH_CODE \
|
2010-06-11 08:50:36 -04:00
|
|
|
(TypeName, type_name, \
|
2012-01-24 11:24:26 -05:00
|
|
|
_cogl_texture_register_texture_type (&_cogl_##type_name##_class))
|
2010-06-11 08:50:36 -04:00
|
|
|
|
2010-07-09 13:46:31 -04:00
|
|
|
#define COGL_TEXTURE_INTERNAL_DEFINE(TypeName, type_name) \
|
2012-04-16 09:14:10 -04:00
|
|
|
COGL_OBJECT_INTERNAL_DEFINE_WITH_CODE \
|
2010-07-09 13:46:31 -04:00
|
|
|
(TypeName, type_name, \
|
2012-01-24 11:24:26 -05:00
|
|
|
_cogl_texture_register_texture_type (&_cogl_##type_name##_class))
|
2010-07-09 13:46:31 -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
|
2011-08-24 16:30:34 -04:00
|
|
|
_cogl_texture_can_hardware_repeat (CoglTexture *texture);
|
2009-09-16 06:56:17 -04:00
|
|
|
|
|
|
|
void
|
2011-08-24 16:30:34 -04:00
|
|
|
_cogl_texture_transform_coords_to_gl (CoglTexture *texture,
|
2009-09-16 06:56:17 -04:00
|
|
|
float *s,
|
|
|
|
float *t);
|
2010-03-01 16:49:04 -05:00
|
|
|
CoglTransformResult
|
2011-08-24 16:30:34 -04:00
|
|
|
_cogl_texture_transform_quad_coords_to_gl (CoglTexture *texture,
|
2010-01-18 04:22:04 -05:00
|
|
|
float *coords);
|
|
|
|
|
2009-06-04 11:04:57 -04:00
|
|
|
void
|
2011-08-24 16:30:34 -04:00
|
|
|
_cogl_texture_pre_paint (CoglTexture *texture, CoglTexturePrePaintFlags flags);
|
2009-06-04 11:04:57 -04:00
|
|
|
|
2010-01-18 04:22:04 -05:00
|
|
|
void
|
2011-08-24 16:30:34 -04:00
|
|
|
_cogl_texture_ensure_non_quad_rendering (CoglTexture *texture);
|
2010-01-18 04:22:04 -05:00
|
|
|
|
2013-06-23 11:18:18 -04:00
|
|
|
/*
|
|
|
|
* This determines a CoglPixelFormat according to texture::components
|
|
|
|
* and texture::premultiplied (i.e. the user required components and
|
|
|
|
* whether the texture should be considered premultiplied)
|
|
|
|
*
|
|
|
|
* A reference/source format can be given (or COGL_PIXEL_FORMAT_ANY)
|
|
|
|
* and wherever possible this function tries to simply return the
|
|
|
|
* given source format if its compatible with the required components.
|
|
|
|
*
|
|
|
|
* Texture backends can call this when allocating a texture to know
|
|
|
|
* how to convert a source image in preparation for uploading.
|
|
|
|
*/
|
2010-02-03 17:54:44 -05:00
|
|
|
CoglPixelFormat
|
2013-06-23 11:18:18 -04:00
|
|
|
_cogl_texture_determine_internal_format (CoglTexture *texture,
|
|
|
|
CoglPixelFormat src_format);
|
|
|
|
|
|
|
|
/* This is called by texture backends when they have successfully
|
|
|
|
* allocated a texture.
|
|
|
|
*
|
|
|
|
* Most texture backends currently track the internal layout of
|
|
|
|
* textures using a CoglPixelFormat which will be finalized when a
|
|
|
|
* texture is allocated. At this point we need to update
|
|
|
|
* texture::components and texture::premultiplied according to the
|
|
|
|
* determined layout.
|
|
|
|
*
|
|
|
|
* XXX: Going forward we should probably aim to stop using
|
|
|
|
* CoglPixelFormat at all for tracking the internal layout of
|
|
|
|
* textures.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_cogl_texture_set_internal_format (CoglTexture *texture,
|
|
|
|
CoglPixelFormat internal_format);
|
2010-02-03 17:54:44 -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
|
|
|
CoglBool
|
2011-08-24 16:30:34 -04:00
|
|
|
_cogl_texture_is_foreign (CoglTexture *texture);
|
2010-04-26 05:01:43 -04:00
|
|
|
|
2011-01-06 08:25:45 -05:00
|
|
|
void
|
2011-08-24 16:30:34 -04:00
|
|
|
_cogl_texture_associate_framebuffer (CoglTexture *texture,
|
2011-01-06 08:25:45 -05:00
|
|
|
CoglFramebuffer *framebuffer);
|
|
|
|
|
|
|
|
const GList *
|
2011-08-24 16:30:34 -04:00
|
|
|
_cogl_texture_get_associated_framebuffers (CoglTexture *texture);
|
2011-01-06 08:25:45 -05:00
|
|
|
|
|
|
|
void
|
2011-08-24 16:30:34 -04:00
|
|
|
_cogl_texture_flush_journal_rendering (CoglTexture *texture);
|
2011-01-06 08:25:45 -05:00
|
|
|
|
2011-10-08 09:13:03 -04:00
|
|
|
void
|
|
|
|
_cogl_texture_spans_foreach_in_region (CoglSpan *x_spans,
|
|
|
|
int n_x_spans,
|
|
|
|
CoglSpan *y_spans,
|
|
|
|
int n_y_spans,
|
|
|
|
CoglTexture **textures,
|
|
|
|
float *virtual_coords,
|
|
|
|
float x_normalize_factor,
|
|
|
|
float y_normalize_factor,
|
|
|
|
CoglPipelineWrapMode wrap_x,
|
|
|
|
CoglPipelineWrapMode wrap_y,
|
|
|
|
CoglMetaTextureCallback callback,
|
|
|
|
void *user_data);
|
|
|
|
|
2012-02-09 06:19:04 -05:00
|
|
|
/*
|
|
|
|
* _cogl_texture_get_type:
|
|
|
|
* @texture: a #CoglTexture pointer
|
|
|
|
*
|
|
|
|
* Retrieves the texture type of the underlying hardware texture that
|
|
|
|
* this #CoglTexture will use.
|
|
|
|
*
|
|
|
|
* Return value: The type of the hardware texture.
|
|
|
|
*/
|
|
|
|
CoglTextureType
|
|
|
|
_cogl_texture_get_type (CoglTexture *texture);
|
|
|
|
|
2012-11-09 12:55:54 -05:00
|
|
|
CoglBool
|
|
|
|
_cogl_texture_set_region (CoglTexture *texture,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
CoglPixelFormat format,
|
|
|
|
int rowstride,
|
|
|
|
const uint8_t *data,
|
|
|
|
int dst_x,
|
|
|
|
int dst_y,
|
|
|
|
int level,
|
|
|
|
CoglError **error);
|
|
|
|
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglBool
|
|
|
|
_cogl_texture_set_region_from_bitmap (CoglTexture *texture,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
2012-11-09 12:55:54 -05:00
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
CoglBitmap *bmp,
|
2012-11-08 12:54:10 -05:00
|
|
|
int dst_x,
|
|
|
|
int dst_y,
|
2012-11-09 12:55:54 -05:00
|
|
|
int level,
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglError **error);
|
|
|
|
|
2012-11-08 15:33:00 -05:00
|
|
|
CoglBool
|
|
|
|
_cogl_texture_needs_premult_conversion (CoglPixelFormat src_format,
|
|
|
|
CoglPixelFormat dst_format);
|
|
|
|
|
2012-11-09 12:55:54 -05:00
|
|
|
int
|
|
|
|
_cogl_texture_get_n_levels (CoglTexture *texture);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_texture_get_level_size (CoglTexture *texture,
|
|
|
|
int level,
|
|
|
|
int *width,
|
|
|
|
int *height,
|
|
|
|
int *depth);
|
|
|
|
|
2012-11-22 18:01:08 -05:00
|
|
|
void
|
|
|
|
_cogl_texture_set_allocated (CoglTexture *texture,
|
2013-06-23 11:18:18 -04:00
|
|
|
CoglPixelFormat internal_format,
|
|
|
|
int width,
|
|
|
|
int height);
|
2012-11-22 18:01:08 -05:00
|
|
|
|
2013-06-27 13:33:04 -04:00
|
|
|
CoglPixelFormat
|
|
|
|
_cogl_texture_get_format (CoglTexture *texture);
|
|
|
|
|
2013-06-23 11:18:18 -04:00
|
|
|
CoglTextureLoader *
|
|
|
|
_cogl_texture_create_loader (void);
|
|
|
|
|
2013-07-01 20:48:54 -04:00
|
|
|
void
|
|
|
|
_cogl_texture_copy_internal_format (CoglTexture *src,
|
|
|
|
CoglTexture *dest);
|
|
|
|
|
2009-07-27 19:37:11 -04:00
|
|
|
#endif /* __COGL_TEXTURE_PRIVATE_H */
|