2010-06-10 10:33:34 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 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
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_TEXTURE_RECTANGLE_H
|
|
|
|
#define __COGL_TEXTURE_RECTANGLE_H
|
|
|
|
|
2010-10-27 13:54:57 -04:00
|
|
|
#include "cogl-pipeline-private.h"
|
2010-06-10 10:33:34 -04:00
|
|
|
#include "cogl-texture-private.h"
|
2012-02-17 20:19:17 -05:00
|
|
|
#include "cogl-texture-rectangle.h"
|
2010-06-10 10:33:34 -04:00
|
|
|
|
|
|
|
struct _CoglTextureRectangle
|
|
|
|
{
|
2012-09-10 15:35:39 -04:00
|
|
|
CoglTexture _parent;
|
2010-06-10 10:33:34 -04:00
|
|
|
|
2012-09-10 15:35:39 -04:00
|
|
|
/* The internal format of the texture represented as a
|
2010-06-10 10:33:34 -04:00
|
|
|
CoglPixelFormat */
|
|
|
|
CoglPixelFormat format;
|
2012-09-10 15:35:39 -04:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
|
|
|
|
/* TODO: factor out these OpenGL specific members into some form
|
|
|
|
* of driver private state. */
|
|
|
|
|
2010-06-10 10:33:34 -04:00
|
|
|
/* The internal format of the GL texture represented as a GL enum */
|
2012-09-10 15:35:39 -04:00
|
|
|
GLenum gl_format;
|
2010-06-10 10:33:34 -04:00
|
|
|
/* The texture object number */
|
2012-09-10 15:35:39 -04:00
|
|
|
GLuint gl_texture;
|
|
|
|
GLenum gl_legacy_texobj_min_filter;
|
|
|
|
GLenum gl_legacy_texobj_mag_filter;
|
|
|
|
GLint gl_legacy_texobj_wrap_mode_s;
|
|
|
|
GLint gl_legacy_texobj_wrap_mode_t;
|
|
|
|
CoglBool is_foreign;
|
2010-06-10 10:33:34 -04:00
|
|
|
};
|
|
|
|
|
2011-10-14 04:25:12 -04:00
|
|
|
CoglTextureRectangle *
|
2010-10-04 10:27:38 -04:00
|
|
|
_cogl_texture_rectangle_new_from_foreign (GLuint gl_handle,
|
|
|
|
GLuint width,
|
|
|
|
GLuint height,
|
|
|
|
CoglPixelFormat format);
|
|
|
|
|
2010-06-10 10:33:34 -04:00
|
|
|
#endif /* __COGL_TEXTURE_RECTANGLE_H */
|