2012-09-12 17:39:46 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2012-09-12 17:39:46 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Intel Corporation.
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2012-09-12 17:39:46 -04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Robert Bragg <robert@linux.intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _COGL_TEXTURE_2D_NOP_PRIVATE_H_
|
|
|
|
#define _COGL_TEXTURE_2D_NOP_PRIVATE_H_
|
|
|
|
|
|
|
|
#include "cogl-types.h"
|
|
|
|
#include "cogl-context-private.h"
|
|
|
|
#include "cogl-texture.h"
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_texture_2d_nop_free (CoglTexture2D *tex_2d);
|
|
|
|
|
|
|
|
CoglBool
|
|
|
|
_cogl_texture_2d_nop_can_create (CoglContext *ctx,
|
|
|
|
int width,
|
|
|
|
int height,
|
|
|
|
CoglPixelFormat internal_format);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_texture_2d_nop_init (CoglTexture2D *tex_2d);
|
|
|
|
|
2012-11-22 18:01:08 -05:00
|
|
|
CoglBool
|
|
|
|
_cogl_texture_2d_nop_allocate (CoglTexture *tex,
|
|
|
|
CoglError **error);
|
2012-09-12 17:39:46 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_texture_2d_nop_flush_legacy_texobj_filters (CoglTexture *tex,
|
|
|
|
GLenum min_filter,
|
|
|
|
GLenum mag_filter);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_texture_2d_nop_flush_legacy_texobj_wrap_modes (CoglTexture *tex,
|
|
|
|
GLenum wrap_mode_s,
|
|
|
|
GLenum wrap_mode_t,
|
|
|
|
GLenum wrap_mode_p);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_texture_2d_nop_copy_from_framebuffer (CoglTexture2D *tex_2d,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int width,
|
2012-11-09 12:55:54 -05:00
|
|
|
int height,
|
|
|
|
CoglFramebuffer *src_fb,
|
|
|
|
int dst_x,
|
|
|
|
int dst_y,
|
|
|
|
int level);
|
2012-09-12 17:39:46 -04:00
|
|
|
|
|
|
|
unsigned int
|
|
|
|
_cogl_texture_2d_nop_get_gl_handle (CoglTexture2D *tex_2d);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_texture_2d_nop_generate_mipmap (CoglTexture2D *tex_2d);
|
|
|
|
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglBool
|
2012-09-12 17:39:46 -04:00
|
|
|
_cogl_texture_2d_nop_copy_from_bitmap (CoglTexture2D *tex_2d,
|
|
|
|
int src_x,
|
|
|
|
int src_y,
|
|
|
|
int width,
|
2012-11-08 12:54:10 -05:00
|
|
|
int height,
|
2012-11-09 12:55:54 -05:00
|
|
|
CoglBitmap *bitmap,
|
|
|
|
int dst_x,
|
|
|
|
int dst_y,
|
|
|
|
int level,
|
2012-11-08 12:54:10 -05:00
|
|
|
CoglError **error);
|
2012-09-12 17:39:46 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_texture_2d_nop_get_data (CoglTexture2D *tex_2d,
|
|
|
|
CoglPixelFormat format,
|
|
|
|
size_t rowstride,
|
|
|
|
uint8_t *data);
|
|
|
|
|
|
|
|
#endif /* _COGL_TEXTURE_2D_NOP_PRIVATE_H_ */
|