2010-07-01 17:04:59 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 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/>.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Neil Roberts <neil@linux.intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_TEXTURE_3D_PRIVATE_H
|
|
|
|
#define __COGL_TEXTURE_3D_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"
|
2010-07-01 17:04:59 -04:00
|
|
|
#include "cogl-texture-private.h"
|
2012-02-17 21:11:34 -05:00
|
|
|
#include "cogl-texture-3d.h"
|
2010-07-01 17:04:59 -04:00
|
|
|
|
|
|
|
struct _CoglTexture3D
|
|
|
|
{
|
2012-09-10 15:35:39 -04:00
|
|
|
CoglTexture _parent;
|
2010-07-01 17:04:59 -04:00
|
|
|
|
2012-09-10 15:35:39 -04:00
|
|
|
/* The internal format of the texture represented as a
|
2010-07-01 17:04:59 -04:00
|
|
|
CoglPixelFormat */
|
2012-11-22 18:01:08 -05:00
|
|
|
CoglPixelFormat internal_format;
|
2012-09-10 15:35:39 -04:00
|
|
|
int depth;
|
|
|
|
CoglBool auto_mipmap;
|
|
|
|
CoglBool mipmaps_dirty;
|
|
|
|
|
|
|
|
/* TODO: factor out these OpenGL specific members into some form
|
|
|
|
* of driver private state. */
|
|
|
|
|
2010-07-01 17:04:59 -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-07-01 17:04:59 -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;
|
|
|
|
GLint gl_legacy_texobj_wrap_mode_p;
|
2010-07-13 13:41:01 -04:00
|
|
|
CoglTexturePixel first_pixel;
|
2010-07-01 17:04:59 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __COGL_TEXTURE_3D_PRIVATE_H */
|