2009-07-29 12:21:07 -04:00
|
|
|
/*
|
2012-05-10 07:16:03 -04:00
|
|
|
* Cogl
|
2009-07-29 12:21:07 -04:00
|
|
|
*
|
2012-05-10 07:16:03 -04:00
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
2009-07-29 12:21:07 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2008 OpenedHand
|
2012-05-10 07:16:03 -04:00
|
|
|
* Copyright (C) 2012 Intel Corporation.
|
2009-07-29 12:21:07 -04:00
|
|
|
*
|
|
|
|
* 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
|
2012-05-10 07:16:03 -04:00
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Neil Roberts <neil@linux.intel.com>
|
|
|
|
* Robert Bragg <robert@linux.intel.com>
|
|
|
|
* Matthew Allum <mallum@openedhand.com>
|
2009-07-29 12:21:07 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_PANGO_PRIVATE_H__
|
|
|
|
#define __COGL_PANGO_PRIVATE_H__
|
|
|
|
|
|
|
|
#include "cogl-pango.h"
|
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_BEGIN_DECLS
|
2009-07-29 12:21:07 -04:00
|
|
|
|
2012-05-10 07:16:03 -04:00
|
|
|
PangoRenderer *
|
|
|
|
_cogl_pango_renderer_new (CoglContext *context);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_pango_renderer_clear_glyph_cache (CoglPangoRenderer *renderer);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_pango_renderer_set_use_mipmapping (CoglPangoRenderer *renderer,
|
|
|
|
CoglBool value);
|
|
|
|
CoglBool
|
|
|
|
_cogl_pango_renderer_get_use_mipmapping (CoglPangoRenderer *renderer);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CoglContext *
|
|
|
|
_cogl_pango_font_map_get_cogl_context (CoglPangoFontMap *fm);
|
|
|
|
|
|
|
|
PangoRenderer *
|
|
|
|
_cogl_pango_font_map_get_renderer (CoglPangoFontMap *fm);
|
2009-07-29 12:21:07 -04:00
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_END_DECLS
|
2009-07-29 12:21:07 -04:00
|
|
|
|
|
|
|
#endif /* __COGL_PANGO_PRIVATE_H__ */
|