2012-03-22 12:32:56 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2012-03-22 12:32:56 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2012 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:
|
2012-03-22 12:32:56 -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.
|
2012-03-22 12:32:56 -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.
|
2012-03-22 12:32:56 -04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_DRIVER_H
|
|
|
|
#define __COGL_DRIVER_H
|
|
|
|
|
|
|
|
#include "cogl-context.h"
|
2012-08-31 19:04:00 -04:00
|
|
|
#include "cogl-offscreen.h"
|
|
|
|
#include "cogl-framebuffer-private.h"
|
2012-09-19 15:04:24 -04:00
|
|
|
#include "cogl-attribute-private.h"
|
2012-03-22 12:32:56 -04:00
|
|
|
|
|
|
|
typedef struct _CoglDriverVtable CoglDriverVtable;
|
|
|
|
|
|
|
|
struct _CoglDriverVtable
|
|
|
|
{
|
2012-09-10 16:45:33 -04:00
|
|
|
/* TODO: factor this out since this is OpenGL specific and
|
|
|
|
* so can be ignored by non-OpenGL drivers. */
|
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-03-22 12:32:56 -04:00
|
|
|
(* pixel_format_from_gl_internal) (CoglContext *context,
|
|
|
|
GLenum gl_int_format,
|
|
|
|
CoglPixelFormat *out_format);
|
|
|
|
|
2012-09-10 16:45:33 -04:00
|
|
|
/* TODO: factor this out since this is OpenGL specific and
|
|
|
|
* so can be ignored by non-OpenGL drivers. */
|
2012-03-22 12:32:56 -04:00
|
|
|
CoglPixelFormat
|
|
|
|
(* pixel_format_to_gl) (CoglContext *context,
|
|
|
|
CoglPixelFormat format,
|
|
|
|
GLenum *out_glintformat,
|
|
|
|
GLenum *out_glformat,
|
|
|
|
GLenum *out_gltype);
|
|
|
|
|
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-03-22 12:32:56 -04:00
|
|
|
(* update_features) (CoglContext *context,
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError **error);
|
2012-08-31 19:04:00 -04:00
|
|
|
|
|
|
|
CoglBool
|
|
|
|
(* offscreen_allocate) (CoglOffscreen *offscreen,
|
2012-08-31 14:28:27 -04:00
|
|
|
CoglError **error);
|
2012-08-31 19:04:00 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
(* offscreen_free) (CoglOffscreen *offscreen);
|
|
|
|
|
|
|
|
void
|
|
|
|
(* framebuffer_flush_state) (CoglFramebuffer *draw_buffer,
|
|
|
|
CoglFramebuffer *read_buffer,
|
|
|
|
CoglFramebufferState state);
|
|
|
|
|
|
|
|
void
|
|
|
|
(* framebuffer_clear) (CoglFramebuffer *framebuffer,
|
|
|
|
unsigned long buffers,
|
|
|
|
float red,
|
|
|
|
float green,
|
|
|
|
float blue,
|
|
|
|
float alpha);
|
|
|
|
|
|
|
|
void
|
|
|
|
(* framebuffer_query_bits) (CoglFramebuffer *framebuffer,
|
2012-12-13 10:39:55 -05:00
|
|
|
CoglFramebufferBits *bits);
|
2012-08-31 19:04:00 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
(* framebuffer_finish) (CoglFramebuffer *framebuffer);
|
|
|
|
|
|
|
|
void
|
|
|
|
(* framebuffer_discard_buffers) (CoglFramebuffer *framebuffer,
|
|
|
|
unsigned long buffers);
|
|
|
|
|
|
|
|
void
|
|
|
|
(* framebuffer_draw_attributes) (CoglFramebuffer *framebuffer,
|
|
|
|
CoglPipeline *pipeline,
|
|
|
|
CoglVerticesMode mode,
|
|
|
|
int first_vertex,
|
|
|
|
int n_vertices,
|
|
|
|
CoglAttribute **attributes,
|
|
|
|
int n_attributes,
|
|
|
|
CoglDrawFlags flags);
|
|
|
|
|
|
|
|
void
|
|
|
|
(* framebuffer_draw_indexed_attributes) (CoglFramebuffer *framebuffer,
|
|
|
|
CoglPipeline *pipeline,
|
|
|
|
CoglVerticesMode mode,
|
|
|
|
int first_vertex,
|
|
|
|
int n_vertices,
|
|
|
|
CoglIndices *indices,
|
|
|
|
CoglAttribute **attributes,
|
|
|
|
int n_attributes,
|
|
|
|
CoglDrawFlags flags);
|
2012-09-10 16:45:33 -04:00
|
|
|
|
2012-11-20 15:05:05 -05:00
|
|
|
CoglBool
|
|
|
|
(* framebuffer_read_pixels_into_bitmap) (CoglFramebuffer *framebuffer,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
CoglReadPixelsFlags source,
|
|
|
|
CoglBitmap *bitmap,
|
|
|
|
CoglError **error);
|
|
|
|
|
2012-09-10 16:45:33 -04:00
|
|
|
/* Destroys any driver specific resources associated with the given
|
|
|
|
* 2D texture. */
|
|
|
|
void
|
|
|
|
(* texture_2d_free) (CoglTexture2D *tex_2d);
|
|
|
|
|
|
|
|
/* Returns TRUE if the driver can support creating a 2D texture with
|
|
|
|
* the given geometry and specified internal format.
|
|
|
|
*/
|
|
|
|
CoglBool
|
|
|
|
(* texture_2d_can_create) (CoglContext *ctx,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
CoglPixelFormat internal_format);
|
|
|
|
|
|
|
|
/* Initializes driver private state before allocating any specific
|
|
|
|
* storage for a 2D texture, where base texture and texture 2D
|
|
|
|
* members will already be initialized before passing control to
|
|
|
|
* the driver.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
(* texture_2d_init) (CoglTexture2D *tex_2d);
|
|
|
|
|
2012-11-22 18:01:08 -05:00
|
|
|
/* Allocates (uninitialized) storage for the given texture according
|
|
|
|
* to the configured size and format of the texture */
|
|
|
|
CoglBool
|
|
|
|
(* texture_2d_allocate) (CoglTexture *tex,
|
|
|
|
CoglError **error);
|
2012-09-10 16:45:33 -04:00
|
|
|
|
|
|
|
/* Initialize the specified region of storage of the given texture
|
|
|
|
* with the contents of the specified framebuffer region
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
(* texture_2d_copy_from_framebuffer) (CoglTexture2D *tex_2d,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int width,
|
2012-11-09 12:55:54 -05:00
|
|
|
int height,
|
|
|
|
CoglFramebuffer *src_fb,
|
|
|
|
int dst_x,
|
|
|
|
int dst_y,
|
|
|
|
int level);
|
2012-09-10 16:45:33 -04:00
|
|
|
|
|
|
|
/* If the given texture has a corresponding OpenGL texture handle
|
|
|
|
* then return that.
|
|
|
|
*
|
|
|
|
* This is optional
|
|
|
|
*/
|
|
|
|
unsigned int
|
|
|
|
(* texture_2d_get_gl_handle) (CoglTexture2D *tex_2d);
|
|
|
|
|
|
|
|
/* Update all mipmap levels > 0 */
|
|
|
|
void
|
|
|
|
(* texture_2d_generate_mipmap) (CoglTexture2D *tex_2d);
|
|
|
|
|
|
|
|
/* Initialize the specified region of storage of the given texture
|
|
|
|
* with the contents of the specified bitmap region
|
2012-11-08 12:54:10 -05:00
|
|
|
*
|
|
|
|
* Since this may need to create the underlying storage first
|
|
|
|
* it may throw a NO_MEMORY error.
|
2012-09-10 16:45:33 -04:00
|
|
|
*/
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglBool
|
2012-09-10 16:45:33 -04:00
|
|
|
(* texture_2d_copy_from_bitmap) (CoglTexture2D *tex_2d,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int width,
|
2012-11-08 12:54:10 -05:00
|
|
|
int height,
|
2012-11-09 12:55:54 -05:00
|
|
|
CoglBitmap *bitmap,
|
|
|
|
int dst_x,
|
|
|
|
int dst_y,
|
|
|
|
int level,
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglError **error);
|
2012-09-10 16:45:33 -04:00
|
|
|
|
|
|
|
/* Reads back the full contents of the given texture and write it to
|
|
|
|
* @data in the given @format and with the given @rowstride.
|
|
|
|
*
|
|
|
|
* This is optional
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
(* texture_2d_get_data) (CoglTexture2D *tex_2d,
|
|
|
|
CoglPixelFormat format,
|
2012-09-26 12:05:01 -04:00
|
|
|
int rowstride,
|
2012-09-10 16:45:33 -04:00
|
|
|
uint8_t *data);
|
2012-09-19 15:04:24 -04:00
|
|
|
|
|
|
|
/* Prepares for drawing by flushing the journal, framebuffer state,
|
|
|
|
* pipeline state and attribute state.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
(* flush_attributes_state) (CoglFramebuffer *framebuffer,
|
|
|
|
CoglPipeline *pipeline,
|
|
|
|
CoglFlushLayerState *layer_state,
|
|
|
|
CoglDrawFlags flags,
|
|
|
|
CoglAttribute **attributes,
|
|
|
|
int n_attributes);
|
2012-09-19 15:37:32 -04:00
|
|
|
|
|
|
|
/* Flushes the clip stack to the GPU using a combination of the
|
|
|
|
* stencil buffer, scissor and clip plane state.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
(* clip_stack_flush) (CoglClipStack *stack, CoglFramebuffer *framebuffer);
|
|
|
|
|
2012-09-19 17:32:25 -04:00
|
|
|
/* Enables the driver to create some meta data to represent a buffer
|
|
|
|
* but with no corresponding storage allocated yet.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
(* buffer_create) (CoglBuffer *buffer);
|
|
|
|
|
|
|
|
void
|
|
|
|
(* buffer_destroy) (CoglBuffer *buffer);
|
|
|
|
|
|
|
|
/* Maps a buffer into the CPU */
|
|
|
|
void *
|
2012-10-17 16:28:45 -04:00
|
|
|
(* buffer_map_range) (CoglBuffer *buffer,
|
|
|
|
size_t offset,
|
|
|
|
size_t size,
|
|
|
|
CoglBufferAccess access,
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglBufferMapHint hints,
|
|
|
|
CoglError **error);
|
2012-09-19 17:32:25 -04:00
|
|
|
|
|
|
|
/* Unmaps a buffer */
|
|
|
|
void
|
|
|
|
(* buffer_unmap) (CoglBuffer *buffer);
|
|
|
|
|
|
|
|
/* Uploads data to the buffer without needing to map it necessarily
|
|
|
|
*/
|
|
|
|
CoglBool
|
|
|
|
(* buffer_set_data) (CoglBuffer *buffer,
|
|
|
|
unsigned int offset,
|
|
|
|
const void *data,
|
2012-11-08 12:54:10 -05:00
|
|
|
unsigned int size,
|
|
|
|
CoglError **error);
|
2012-03-22 12:32:56 -04:00
|
|
|
};
|
|
|
|
|
2013-01-20 13:47:40 -05:00
|
|
|
#define COGL_DRIVER_ERROR (_cogl_driver_error_quark ())
|
|
|
|
|
|
|
|
typedef enum { /*< prefix=COGL_DRIVER_ERROR >*/
|
|
|
|
COGL_DRIVER_ERROR_UNKNOWN_VERSION,
|
|
|
|
COGL_DRIVER_ERROR_INVALID_VERSION,
|
|
|
|
COGL_DRIVER_ERROR_NO_SUITABLE_DRIVER_FOUND,
|
|
|
|
COGL_DRIVER_ERROR_FAILED_TO_LOAD_LIBRARY
|
|
|
|
} CoglDriverError;
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
_cogl_driver_error_quark (void);
|
|
|
|
|
2012-03-22 12:32:56 -04:00
|
|
|
#endif /* __COGL_DRIVER_H */
|
|
|
|
|