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
|
|
|
*
|
2009-04-27 10:48:12 -04:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
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
|
|
|
*
|
|
|
|
* 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, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_FBO_H
|
|
|
|
#define __COGL_FBO_H
|
|
|
|
|
2009-04-01 12:16:44 -04:00
|
|
|
#include "cogl-handle.h"
|
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
typedef struct
|
|
|
|
{
|
2009-04-01 12:16:44 -04:00
|
|
|
CoglHandleObject _parent;
|
2008-04-25 09:37:36 -04:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
GLuint gl_handle;
|
2008-08-01 08:23:57 -04:00
|
|
|
GLuint gl_stencil_handle;
|
2009-04-01 12:16:44 -04:00
|
|
|
|
2008-04-25 09:37:36 -04:00
|
|
|
} CoglFbo;
|
|
|
|
|
|
|
|
#endif /* __COGL_FBO_H */
|