2009-07-29 12:21:07 -04:00
|
|
|
/*
|
2014-02-21 20:28:54 -05:00
|
|
|
* Cogl
|
2009-07-29 12:21:07 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2009-07-29 12:21:07 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2008 OpenedHand
|
|
|
|
*
|
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:
|
2009-07-29 12:21:07 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2009-07-29 12:21:07 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* 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.
|
2009-07-29 12:21:07 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_PANGO_GLYPH_CACHE_H__
|
|
|
|
#define __COGL_PANGO_GLYPH_CACHE_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <pango/pango-font.h>
|
|
|
|
|
2013-10-09 08:31:12 -04:00
|
|
|
#include "cogl/cogl-texture.h"
|
|
|
|
|
2018-11-23 02:42:05 -05:00
|
|
|
G_BEGIN_DECLS
|
2009-07-29 12:21:07 -04:00
|
|
|
|
|
|
|
typedef struct _CoglPangoGlyphCache CoglPangoGlyphCache;
|
|
|
|
typedef struct _CoglPangoGlyphCacheValue CoglPangoGlyphCacheValue;
|
|
|
|
|
|
|
|
struct _CoglPangoGlyphCacheValue
|
|
|
|
{
|
2011-08-24 16:30:34 -04:00
|
|
|
CoglTexture *texture;
|
2009-07-29 12:21:07 -04:00
|
|
|
|
2011-08-24 16:30:34 -04:00
|
|
|
float tx1;
|
|
|
|
float ty1;
|
|
|
|
float tx2;
|
|
|
|
float ty2;
|
2010-08-04 13:05:21 -04:00
|
|
|
|
2011-08-24 16:30:34 -04:00
|
|
|
int tx_pixel;
|
|
|
|
int ty_pixel;
|
2009-07-29 12:21:07 -04:00
|
|
|
|
2011-08-24 16:30:34 -04:00
|
|
|
int draw_x;
|
|
|
|
int draw_y;
|
|
|
|
int draw_width;
|
|
|
|
int draw_height;
|
2010-08-04 13:05:21 -04:00
|
|
|
|
|
|
|
/* This will be set to TRUE when the glyph atlas is reorganized
|
|
|
|
which means the glyph will need to be redrawn */
|
2020-03-24 19:28:30 -04:00
|
|
|
guint dirty : 1;
|
|
|
|
/* Set to TRUE if the glyph has colors (eg. emoji) */
|
|
|
|
guint has_color : 1;
|
2009-07-29 12:21:07 -04:00
|
|
|
};
|
|
|
|
|
2010-08-04 13:05:21 -04:00
|
|
|
typedef void (* CoglPangoGlyphCacheDirtyFunc) (PangoFont *font,
|
|
|
|
PangoGlyph glyph,
|
|
|
|
CoglPangoGlyphCacheValue *value);
|
|
|
|
|
2019-11-21 06:15:22 -05:00
|
|
|
COGL_EXPORT CoglPangoGlyphCache *
|
2012-11-09 05:54:32 -05:00
|
|
|
cogl_pango_glyph_cache_new (CoglContext *ctx,
|
2018-11-24 07:04:47 -05:00
|
|
|
gboolean use_mipmapping);
|
2009-07-29 12:21:07 -04:00
|
|
|
|
2019-11-21 06:15:22 -05:00
|
|
|
COGL_EXPORT void
|
2009-07-29 12:21:07 -04:00
|
|
|
cogl_pango_glyph_cache_free (CoglPangoGlyphCache *cache);
|
|
|
|
|
2019-11-21 06:15:22 -05:00
|
|
|
COGL_EXPORT CoglPangoGlyphCacheValue *
|
2009-07-29 12:21:07 -04:00
|
|
|
cogl_pango_glyph_cache_lookup (CoglPangoGlyphCache *cache,
|
2018-11-24 07:04:47 -05:00
|
|
|
gboolean create,
|
2009-07-29 12:21:07 -04:00
|
|
|
PangoFont *font,
|
|
|
|
PangoGlyph glyph);
|
|
|
|
|
2019-11-21 06:15:22 -05:00
|
|
|
COGL_EXPORT void
|
2009-07-29 12:21:07 -04:00
|
|
|
cogl_pango_glyph_cache_clear (CoglPangoGlyphCache *cache);
|
|
|
|
|
2010-08-04 13:05:21 -04:00
|
|
|
void
|
|
|
|
_cogl_pango_glyph_cache_add_reorganize_callback (CoglPangoGlyphCache *cache,
|
2011-03-14 13:58:31 -04:00
|
|
|
GHookFunc func,
|
2010-08-04 13:05:21 -04:00
|
|
|
void *user_data);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_pango_glyph_cache_remove_reorganize_callback (CoglPangoGlyphCache *cache,
|
2011-03-14 13:58:31 -04:00
|
|
|
GHookFunc func,
|
2010-08-04 13:05:21 -04:00
|
|
|
void *user_data);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_pango_glyph_cache_set_dirty_glyphs (CoglPangoGlyphCache *cache,
|
|
|
|
CoglPangoGlyphCacheDirtyFunc func);
|
|
|
|
|
2018-11-23 02:42:05 -05:00
|
|
|
G_END_DECLS
|
2009-07-29 12:21:07 -04:00
|
|
|
|
|
|
|
#endif /* __COGL_PANGO_GLYPH_CACHE_H__ */
|