2010-02-26 07:38:22 -05:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 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/>.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Neil Roberts <neil@linux.intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_PANGO_PIPELINE_CACHE_H__
|
|
|
|
#define __COGL_PANGO_PIPELINE_CACHE_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <cogl/cogl.h>
|
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_BEGIN_DECLS
|
2010-02-26 07:38:22 -05:00
|
|
|
|
|
|
|
typedef struct _CoglPangoPipelineCache CoglPangoPipelineCache;
|
|
|
|
|
|
|
|
CoglPangoPipelineCache *
|
2012-05-10 07:16:03 -04:00
|
|
|
_cogl_pango_pipeline_cache_new (CoglContext *ctx,
|
|
|
|
CoglBool use_mipmapping);
|
2010-02-26 07:38:22 -05:00
|
|
|
|
|
|
|
/* Returns a pipeline that can be used to render glyphs in the given
|
|
|
|
texture. The pipeline has a new reference so it is up to the caller
|
|
|
|
to unref it */
|
|
|
|
CoglPipeline *
|
|
|
|
_cogl_pango_pipeline_cache_get (CoglPangoPipelineCache *cache,
|
2012-04-16 09:14:10 -04:00
|
|
|
CoglTexture *texture);
|
2010-02-26 07:38:22 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_pango_pipeline_cache_free (CoglPangoPipelineCache *cache);
|
|
|
|
|
2012-11-22 13:01:10 -05:00
|
|
|
COGL_END_DECLS
|
2010-02-26 07:38:22 -05:00
|
|
|
|
|
|
|
#endif /* __COGL_PANGO_PIPELINE_CACHE_H__ */
|