2010-11-14 12:22:05 -05:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
|
|
* Utilities for use with Cogl
|
|
|
|
*
|
|
|
|
* Copyright 2010 Red Hat, Inc.
|
|
|
|
* Copyright 2010 Intel Corporation
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-11 20:42:06 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2010-11-14 12:22:05 -05:00
|
|
|
*/
|
|
|
|
|
2013-02-19 19:34:47 -05:00
|
|
|
#include <clutter/clutter.h>
|
2010-11-14 12:22:05 -05:00
|
|
|
#include "cogl-utils.h"
|
|
|
|
|
|
|
|
/* Based on gnome-shell/src/st/st-private.c:_st_create_texture_material.c */
|
|
|
|
|
|
|
|
/**
|
2013-02-19 19:34:47 -05:00
|
|
|
* meta_create_texture_pipeline:
|
2014-05-28 15:44:23 -04:00
|
|
|
* @src_texture: (nullable): texture to use initially for the layer
|
2010-11-14 12:22:05 -05:00
|
|
|
*
|
2013-02-19 19:34:47 -05:00
|
|
|
* Creates a pipeline with a single layer. Using a common template
|
2013-09-04 08:38:54 -04:00
|
|
|
* makes it easier for Cogl to share a shader for different uses in
|
|
|
|
* Mutter.
|
2010-11-14 12:22:05 -05:00
|
|
|
*
|
2013-02-19 19:34:47 -05:00
|
|
|
* Return value: (transfer full): a newly created #CoglPipeline
|
2010-11-14 12:22:05 -05:00
|
|
|
*/
|
2013-02-19 19:34:47 -05:00
|
|
|
CoglPipeline *
|
|
|
|
meta_create_texture_pipeline (CoglTexture *src_texture)
|
2010-11-14 12:22:05 -05:00
|
|
|
{
|
2013-02-19 19:34:47 -05:00
|
|
|
static CoglPipeline *texture_pipeline_template = NULL;
|
|
|
|
CoglPipeline *pipeline;
|
2010-11-14 12:22:05 -05:00
|
|
|
|
2013-09-04 08:38:54 -04:00
|
|
|
/* The only state used in the pipeline that would affect the shader
|
|
|
|
generation is the texture type on the layer. Therefore we create
|
|
|
|
a template pipeline which sets this state and all texture
|
|
|
|
pipelines are created as a copy of this. That way Cogl can find
|
|
|
|
the shader state for the pipeline more quickly by looking at the
|
|
|
|
pipeline ancestry instead of resorting to the shader cache. */
|
2013-02-19 19:34:47 -05:00
|
|
|
if (G_UNLIKELY (texture_pipeline_template == NULL))
|
2010-11-14 12:22:05 -05:00
|
|
|
{
|
2013-09-04 08:38:54 -04:00
|
|
|
CoglContext *ctx =
|
|
|
|
clutter_backend_get_cogl_context (clutter_get_default_backend ());
|
2013-02-19 19:34:47 -05:00
|
|
|
|
|
|
|
texture_pipeline_template = cogl_pipeline_new (ctx);
|
2013-09-04 08:38:54 -04:00
|
|
|
cogl_pipeline_set_layer_null_texture (texture_pipeline_template,
|
|
|
|
0, /* layer */
|
|
|
|
COGL_TEXTURE_TYPE_2D);
|
2010-11-14 12:22:05 -05:00
|
|
|
}
|
|
|
|
|
2013-02-19 19:34:47 -05:00
|
|
|
pipeline = cogl_pipeline_copy (texture_pipeline_template);
|
2010-11-14 12:22:05 -05:00
|
|
|
|
2013-02-19 19:34:47 -05:00
|
|
|
if (src_texture != NULL)
|
|
|
|
cogl_pipeline_set_layer_texture (pipeline, 0, src_texture);
|
2010-11-14 12:22:05 -05:00
|
|
|
|
2013-02-19 19:34:47 -05:00
|
|
|
return pipeline;
|
2010-11-14 12:22:05 -05:00
|
|
|
}
|