2009-12-04 08:06:32 -05: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
|
2010-03-01 07:56:10 -05:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
2009-12-04 08:06:32 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_ATLAS_TEXTURE_H
|
|
|
|
#define __COGL_ATLAS_TEXTURE_H
|
|
|
|
|
|
|
|
#include "cogl-handle.h"
|
|
|
|
#include "cogl-texture-private.h"
|
2010-08-02 10:24:03 -04:00
|
|
|
#include "cogl-rectangle-map.h"
|
2010-08-02 11:29:10 -04:00
|
|
|
#include "cogl-atlas.h"
|
2009-12-04 08:06:32 -05:00
|
|
|
|
|
|
|
#define COGL_ATLAS_TEXTURE(tex) ((CoglAtlasTexture *) tex)
|
|
|
|
|
|
|
|
typedef struct _CoglAtlasTexture CoglAtlasTexture;
|
|
|
|
|
|
|
|
struct _CoglAtlasTexture
|
|
|
|
{
|
2010-08-02 10:24:03 -04:00
|
|
|
CoglTexture _parent;
|
2009-12-04 08:06:32 -05:00
|
|
|
|
|
|
|
/* The format that the texture is in. This isn't necessarily the
|
|
|
|
same format as the atlas texture because we can store
|
|
|
|
pre-multiplied and non-pre-multiplied textures together */
|
2010-08-02 10:24:03 -04:00
|
|
|
CoglPixelFormat format;
|
2009-12-04 08:06:32 -05:00
|
|
|
|
|
|
|
/* The rectangle that was used to add this texture to the
|
|
|
|
atlas. This includes the 1-pixel border */
|
2010-08-02 10:24:03 -04:00
|
|
|
CoglRectangleMapEntry rectangle;
|
2009-12-04 08:06:32 -05:00
|
|
|
|
2010-11-27 08:15:02 -05:00
|
|
|
/* The atlas that this texture is in. If the texture is no longer in
|
|
|
|
an atlas then this will be NULL. A reference is taken on the
|
|
|
|
atlas by the texture (but not vice versa so there is no cycle) */
|
|
|
|
CoglAtlas *atlas;
|
2009-12-04 08:06:32 -05:00
|
|
|
|
|
|
|
/* A CoglSubTexture representing the region for easy rendering */
|
2010-08-02 10:24:03 -04:00
|
|
|
CoglHandle sub_texture;
|
2009-12-04 08:06:32 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
GQuark
|
|
|
|
_cogl_handle_atlas_texture_get_type (void);
|
|
|
|
|
|
|
|
CoglHandle
|
2010-07-07 13:44:16 -04:00
|
|
|
_cogl_atlas_texture_new_from_bitmap (CoglBitmap *bmp,
|
2009-12-04 08:06:32 -05:00
|
|
|
CoglTextureFlags flags,
|
|
|
|
CoglPixelFormat internal_format);
|
|
|
|
|
|
|
|
#endif /* __COGL_ATLAS_TEXTURE_H */
|