0850eea162
This moves the _cogl_texture_get_gl_format function from cogl-texture.c to cogl-texture-gl.c and renames it _cogl_texture_gl_get_format. Reviewed-by: Neil Roberts <neil@linux.intel.com> (cherry picked from commit f8deec01eff7d8d9900b509048cf1ff1c86ca879)
60 lines
2.1 KiB
C
60 lines
2.1 KiB
C
/*
|
|
* Cogl
|
|
*
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
*
|
|
* Copyright (C) 2012 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_GL_PRIVATE_H_
|
|
#define _COGL_TEXTURE_GL_PRIVATE_H_
|
|
|
|
#include "cogl-context.h"
|
|
|
|
void
|
|
_cogl_texture_gl_prep_alignment_for_pixels_upload (CoglContext *ctx,
|
|
int pixels_rowstride);
|
|
|
|
void
|
|
_cogl_texture_gl_prep_alignment_for_pixels_download (CoglContext *ctx,
|
|
int bpp,
|
|
int width,
|
|
int rowstride);
|
|
|
|
void
|
|
_cogl_texture_gl_flush_legacy_texobj_wrap_modes (CoglTexture *texture,
|
|
unsigned int wrap_mode_s,
|
|
unsigned int wrap_mode_t,
|
|
unsigned int wrap_mode_p);
|
|
|
|
void
|
|
_cogl_texture_gl_flush_legacy_texobj_filters (CoglTexture *texture,
|
|
unsigned int min_filter,
|
|
unsigned int mag_filter);
|
|
|
|
void
|
|
_cogl_texture_gl_maybe_update_max_level (CoglTexture *texture,
|
|
int max_level);
|
|
|
|
void
|
|
_cogl_texture_gl_generate_mipmaps (CoglTexture *texture);
|
|
|
|
GLenum
|
|
_cogl_texture_gl_get_format (CoglTexture *texture);
|
|
|
|
#endif /* _COGL_TEXTURE_GL_PRIVATE_H_ */
|