2010-02-26 07:38:22 -05:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2010-02-26 07:38:22 -05:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 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:
|
2010-02-26 07:38:22 -05: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.
|
2010-02-26 07:38:22 -05: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.
|
2010-02-26 07:38:22 -05:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Neil Roberts <neil@linux.intel.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __COGL_PANGO_PIPELINE_CACHE_H__
|
|
|
|
#define __COGL_PANGO_PIPELINE_CACHE_H__
|
|
|
|
|
|
|
|
#include <glib.h>
|
2013-10-09 08:31:12 -04:00
|
|
|
|
|
|
|
#include "cogl/cogl-context-private.h"
|
2010-02-26 07:38:22 -05:00
|
|
|
|
2018-11-23 02:42:05 -05:00
|
|
|
G_BEGIN_DECLS
|
2010-02-26 07:38:22 -05:00
|
|
|
|
2013-04-27 22:22:24 -04:00
|
|
|
typedef struct _CoglPangoPipelineCache
|
|
|
|
{
|
|
|
|
CoglContext *ctx;
|
|
|
|
|
|
|
|
GHashTable *hash_table;
|
|
|
|
|
|
|
|
CoglPipeline *base_texture_alpha_pipeline;
|
|
|
|
CoglPipeline *base_texture_rgba_pipeline;
|
|
|
|
|
2018-11-24 07:04:47 -05:00
|
|
|
gboolean use_mipmapping;
|
2013-04-27 22:22:24 -04:00
|
|
|
} CoglPangoPipelineCache;
|
|
|
|
|
2010-02-26 07:38:22 -05:00
|
|
|
|
|
|
|
CoglPangoPipelineCache *
|
2012-05-10 07:16:03 -04:00
|
|
|
_cogl_pango_pipeline_cache_new (CoglContext *ctx,
|
2018-11-24 07:04:47 -05:00
|
|
|
gboolean 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);
|
|
|
|
|
2018-11-23 02:42:05 -05:00
|
|
|
G_END_DECLS
|
2010-02-26 07:38:22 -05:00
|
|
|
|
|
|
|
#endif /* __COGL_PANGO_PIPELINE_CACHE_H__ */
|