7011eb5db4
cogl_texture_set_region() and cogl_texture_set_region_from_bitmap() now have a level argument so image data can be uploaded to a specific mipmap level. The prototype for cogl_texture_set_region was also updated to simplify the arguments. The arguments for cogl_texture_set_region_from_bitmap were reordered to be consistent with cogl_texture_set_region with the source related arguments listed first followed by the destination arguments. Reviewed-by: Neil Roberts <neil@linux.intel.com> (cherry picked from commit 3a336a8adcd406b53731a6de0e7d97ba7932c1a8) Note: Public API changes were reverted in cherry-picking this patch
57 lines
2.0 KiB
C
57 lines
2.0 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);
|
|
|
|
#endif /* _COGL_TEXTURE_GL_PRIVATE_H_ */
|