2009-09-25 09:34:34 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007,2008,2009 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
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2009-09-25 09:34:34 -04:00
|
|
|
*/
|
|
|
|
|
2009-11-26 14:06:35 -05:00
|
|
|
#ifndef __COGL_FRAMEBUFFER_PRIVATE_H
|
|
|
|
#define __COGL_FRAMEBUFFER_PRIVATE_H
|
2009-09-25 09:34:34 -04:00
|
|
|
|
|
|
|
#include "cogl-handle.h"
|
|
|
|
#include "cogl-matrix-stack.h"
|
2010-04-14 14:41:08 -04:00
|
|
|
#include "cogl-clip-state.h"
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2009-11-26 14:06:35 -05:00
|
|
|
typedef enum _CoglFramebufferType {
|
|
|
|
COGL_FRAMEBUFFER_TYPE_ONSCREEN,
|
|
|
|
COGL_FRAMEBUFFER_TYPE_OFFSCREEN
|
|
|
|
} CoglFramebufferType;
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2010-07-07 09:41:54 -04:00
|
|
|
struct _CoglFramebuffer
|
2009-09-25 09:34:34 -04:00
|
|
|
{
|
2010-07-07 09:41:54 -04:00
|
|
|
CoglObject _parent;
|
2009-11-26 14:06:35 -05:00
|
|
|
CoglFramebufferType type;
|
2009-09-25 09:34:34 -04:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
|
|
|
|
CoglMatrixStack *modelview_stack;
|
|
|
|
CoglMatrixStack *projection_stack;
|
|
|
|
int viewport_x;
|
|
|
|
int viewport_y;
|
|
|
|
int viewport_width;
|
|
|
|
int viewport_height;
|
|
|
|
|
2010-04-14 14:41:08 -04:00
|
|
|
CoglClipState clip_state;
|
2010-04-26 13:08:45 -04:00
|
|
|
|
|
|
|
gboolean dirty_bitmasks;
|
|
|
|
int red_bits;
|
|
|
|
int blue_bits;
|
|
|
|
int green_bits;
|
|
|
|
int alpha_bits;
|
2010-07-07 09:41:54 -04:00
|
|
|
};
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2009-11-26 14:06:35 -05:00
|
|
|
#define COGL_FRAMEBUFFER(X) ((CoglFramebuffer *)(X))
|
2009-09-25 09:34:34 -04:00
|
|
|
|
|
|
|
typedef struct _CoglOffscreen
|
|
|
|
{
|
2009-11-26 14:06:35 -05:00
|
|
|
CoglFramebuffer _parent;
|
2009-09-25 09:34:34 -04:00
|
|
|
GLuint fbo_handle;
|
2009-11-30 15:04:41 -05:00
|
|
|
GSList *renderbuffers;
|
2009-11-25 09:26:32 -05:00
|
|
|
CoglHandle texture;
|
2009-09-25 09:34:34 -04:00
|
|
|
} CoglOffscreen;
|
|
|
|
|
|
|
|
#define COGL_OFFSCREEN(X) ((CoglOffscreen *)(X))
|
|
|
|
|
|
|
|
typedef struct _CoglOnscreen
|
|
|
|
{
|
2009-11-26 14:06:35 -05:00
|
|
|
CoglFramebuffer _parent;
|
2009-09-25 09:34:34 -04:00
|
|
|
} CoglOnscreen;
|
|
|
|
|
|
|
|
#define COGL_ONSCREEN(X) ((CoglOnscreen *)(X))
|
|
|
|
|
|
|
|
void
|
2009-11-26 14:06:35 -05:00
|
|
|
_cogl_framebuffer_state_init (void);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-10-21 18:20:44 -04:00
|
|
|
int
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_width (CoglFramebuffer *framebuffer);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-10-21 18:20:44 -04:00
|
|
|
int
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_height (CoglFramebuffer *framebuffer);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2010-04-14 14:41:08 -04:00
|
|
|
CoglClipState *
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_clip_state (CoglFramebuffer *framebuffer);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
void
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_set_viewport (CoglFramebuffer *framebuffer,
|
2009-09-25 09:34:34 -04:00
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
int width,
|
|
|
|
int height);
|
|
|
|
int
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_viewport_x (CoglFramebuffer *framebuffer);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
int
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_viewport_y (CoglFramebuffer *framebuffer);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
int
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_viewport_width (CoglFramebuffer *framebuffer);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
int
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_viewport_height (CoglFramebuffer *framebuffer);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
void
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_viewport4fv (CoglFramebuffer *framebuffer,
|
|
|
|
int *viewport);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
CoglMatrixStack *
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_modelview_stack (CoglFramebuffer *framebuffer);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
CoglMatrixStack *
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_get_projection_stack (CoglFramebuffer *framebuffer);
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2009-11-26 14:06:35 -05:00
|
|
|
typedef enum _CoglFramebufferFlushFlags
|
2009-09-25 09:34:34 -04:00
|
|
|
{
|
|
|
|
/* XXX: When using this, that imples you are going to manually load the
|
|
|
|
* modelview matrix (via glLoadMatrix). _cogl_matrix_stack_flush_to_gl wont
|
2009-11-26 14:06:35 -05:00
|
|
|
* be called for framebuffer->modelview_stack, and the modelview_stack will
|
2009-09-25 09:34:34 -04:00
|
|
|
* also be marked as dirty. */
|
2009-11-26 14:06:35 -05:00
|
|
|
COGL_FRAMEBUFFER_FLUSH_SKIP_MODELVIEW = 1L<<0,
|
2010-11-02 13:34:51 -04:00
|
|
|
/* Similarly this flag implies you are going to flush the clip state
|
|
|
|
yourself */
|
|
|
|
COGL_FRAMEBUFFER_FLUSH_SKIP_CLIP_STATE = 1L<<1
|
2009-11-26 14:06:35 -05:00
|
|
|
} CoglFramebufferFlushFlags;
|
2009-09-25 09:34:34 -04:00
|
|
|
|
|
|
|
void
|
2010-07-07 09:41:54 -04:00
|
|
|
_cogl_framebuffer_flush_state (CoglFramebuffer *framebuffer,
|
2009-11-26 14:06:35 -05:00
|
|
|
CoglFramebufferFlushFlags flags);
|
2009-09-25 09:34:34 -04:00
|
|
|
|
|
|
|
CoglHandle
|
|
|
|
_cogl_onscreen_new (void);
|
|
|
|
|
2010-07-07 09:41:54 -04:00
|
|
|
CoglFramebuffer *
|
2009-11-26 14:06:35 -05:00
|
|
|
_cogl_get_framebuffer (void);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
GSList *
|
2009-11-26 14:06:35 -05:00
|
|
|
_cogl_create_framebuffer_stack (void);
|
2010-04-26 13:08:45 -04:00
|
|
|
|
2009-09-25 09:34:34 -04:00
|
|
|
void
|
2009-11-26 14:06:35 -05:00
|
|
|
_cogl_free_framebuffer_stack (GSList *stack);
|
2009-09-25 09:34:34 -04:00
|
|
|
|
2009-11-26 14:06:35 -05:00
|
|
|
#endif /* __COGL_FRAMEBUFFER_PRIVATE_H */
|
2009-09-25 09:34:34 -04:00
|
|
|
|