2010-12-02 15:48:45 -05:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
|
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 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>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-09-23 04:43:05 -04:00
|
|
|
#include "cogl-context-private.h"
|
2010-12-02 15:48:45 -05:00
|
|
|
#include "cogl-pipeline-private.h"
|
|
|
|
#include "cogl-pipeline-opengl-private.h"
|
|
|
|
|
|
|
|
#ifdef COGL_PIPELINE_VERTEND_GLSL
|
|
|
|
|
|
|
|
#include "cogl.h"
|
|
|
|
#include "cogl-internal.h"
|
2010-11-04 18:25:52 -04:00
|
|
|
#include "cogl-context-private.h"
|
2010-12-02 15:48:45 -05:00
|
|
|
#include "cogl-handle.h"
|
|
|
|
#include "cogl-program-private.h"
|
|
|
|
#include "cogl-pipeline-vertend-glsl-private.h"
|
|
|
|
|
|
|
|
const CoglPipelineVertend _cogl_pipeline_glsl_vertend;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned int ref_count;
|
|
|
|
|
|
|
|
GLuint gl_shader;
|
|
|
|
GString *header, *source;
|
|
|
|
|
|
|
|
/* Age of the user program that was current when the shader was
|
|
|
|
generated. We need to keep track of this because if the user
|
|
|
|
program changes then we may need to redecide whether to generate
|
|
|
|
a shader at all */
|
|
|
|
unsigned int user_program_age;
|
2011-06-30 08:39:48 -04:00
|
|
|
} CoglPipelineShaderState;
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
static CoglUserDataKey shader_state_key;
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
static CoglPipelineShaderState *
|
|
|
|
shader_state_new (void)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
CoglPipelineShaderState *shader_state;
|
|
|
|
|
|
|
|
shader_state = g_slice_new0 (CoglPipelineShaderState);
|
|
|
|
shader_state->ref_count = 1;
|
|
|
|
|
|
|
|
return shader_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglPipelineShaderState *
|
|
|
|
get_shader_state (CoglPipeline *pipeline)
|
|
|
|
{
|
|
|
|
return cogl_object_get_user_data (COGL_OBJECT (pipeline), &shader_state_key);
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-30 08:39:48 -04:00
|
|
|
destroy_shader_state (void *user_data)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
CoglPipelineShaderState *shader_state = user_data;
|
2010-12-02 15:48:45 -05:00
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
if (--shader_state->ref_count == 0)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
if (shader_state->gl_shader)
|
|
|
|
GE( ctx, glDeleteShader (shader_state->gl_shader) );
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
g_slice_free (CoglPipelineShaderState, shader_state);
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-30 08:39:48 -04:00
|
|
|
set_shader_state (CoglPipeline *pipeline,
|
|
|
|
CoglPipelineShaderState *shader_state)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
|
|
|
cogl_object_set_user_data (COGL_OBJECT (pipeline),
|
2011-06-30 08:39:48 -04:00
|
|
|
&shader_state_key,
|
|
|
|
shader_state,
|
|
|
|
destroy_shader_state);
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-06-30 08:39:48 -04:00
|
|
|
dirty_shader_state (CoglPipeline *pipeline)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
|
|
|
cogl_object_set_user_data (COGL_OBJECT (pipeline),
|
2011-06-30 08:39:48 -04:00
|
|
|
&shader_state_key,
|
2010-12-02 15:48:45 -05:00
|
|
|
NULL,
|
2011-06-30 08:39:48 -04:00
|
|
|
NULL);
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
GLuint
|
|
|
|
_cogl_pipeline_vertend_glsl_get_shader (CoglPipeline *pipeline)
|
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
CoglPipelineShaderState *shader_state = get_shader_state (pipeline);
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
if (shader_state)
|
|
|
|
return shader_state->gl_shader;
|
2010-12-02 15:48:45 -05:00
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_cogl_pipeline_vertend_glsl_start (CoglPipeline *pipeline,
|
|
|
|
int n_layers,
|
|
|
|
unsigned long pipelines_difference)
|
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
CoglPipelineShaderState *shader_state;
|
2011-06-30 13:34:05 -04:00
|
|
|
CoglPipeline *template_pipeline = NULL;
|
2010-12-02 15:48:45 -05:00
|
|
|
CoglProgram *user_program;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, FALSE);
|
|
|
|
|
|
|
|
if (!cogl_features_available (COGL_FEATURE_SHADERS_GLSL))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
user_program = cogl_pipeline_get_user_program (pipeline);
|
|
|
|
|
|
|
|
/* If the user program has a vertex shader that isn't GLSL then the
|
|
|
|
appropriate vertend for that language should handle it */
|
|
|
|
if (user_program &&
|
|
|
|
_cogl_program_has_vertex_shader (user_program) &&
|
|
|
|
_cogl_program_get_language (user_program) != COGL_SHADER_LANGUAGE_GLSL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Now lookup our glsl backend private state (allocating if
|
|
|
|
* necessary) */
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state = get_shader_state (pipeline);
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
if (shader_state == NULL)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
|
|
|
CoglPipeline *authority;
|
|
|
|
|
|
|
|
/* Get the authority for anything affecting vertex shader
|
|
|
|
state */
|
|
|
|
authority = _cogl_pipeline_find_equivalent_parent
|
|
|
|
(pipeline,
|
|
|
|
COGL_PIPELINE_STATE_AFFECTS_VERTEX_CODEGEN &
|
|
|
|
~COGL_PIPELINE_STATE_LAYERS,
|
2011-01-11 11:02:06 -05:00
|
|
|
COGL_PIPELINE_LAYER_STATE_AFFECTS_VERTEX_CODEGEN);
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state = get_shader_state (authority);
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
if (shader_state == NULL)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
2011-06-30 13:34:05 -04:00
|
|
|
/* Check if there is already a similar cached pipeline whose
|
|
|
|
shader state we can share */
|
|
|
|
if (G_LIKELY (!(COGL_DEBUG_ENABLED
|
|
|
|
(COGL_DEBUG_DISABLE_PROGRAM_CACHES))))
|
|
|
|
{
|
|
|
|
template_pipeline =
|
|
|
|
_cogl_pipeline_cache_get_vertex_template (ctx->pipeline_cache,
|
|
|
|
authority);
|
|
|
|
|
|
|
|
shader_state = get_shader_state (template_pipeline);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shader_state)
|
|
|
|
shader_state->ref_count++;
|
|
|
|
else
|
|
|
|
shader_state = shader_state_new ();
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
set_shader_state (authority, shader_state);
|
2011-06-30 13:34:05 -04:00
|
|
|
|
|
|
|
if (template_pipeline)
|
|
|
|
{
|
|
|
|
shader_state->ref_count++;
|
|
|
|
set_shader_state (template_pipeline, shader_state);
|
|
|
|
}
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (authority != pipeline)
|
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state->ref_count++;
|
|
|
|
set_shader_state (pipeline, shader_state);
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
if (shader_state->gl_shader)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
|
|
|
/* If we already have a valid GLSL shader then we don't need to
|
|
|
|
generate a new one. However if there's a user program and it
|
|
|
|
has changed since the last link then we do need a new shader */
|
|
|
|
if (user_program == NULL ||
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state->user_program_age == user_program->age)
|
2010-12-02 15:48:45 -05:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* We need to recreate the shader so destroy the existing one */
|
2011-06-30 08:39:48 -04:00
|
|
|
GE( ctx, glDeleteShader (shader_state->gl_shader) );
|
|
|
|
shader_state->gl_shader = 0;
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
/* If we make it here then we have a shader_state struct without a gl_shader
|
2010-12-02 15:48:45 -05:00
|
|
|
either because this is the first time we've encountered it or
|
|
|
|
because the user program has changed */
|
|
|
|
|
|
|
|
if (user_program)
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state->user_program_age = user_program->age;
|
2010-12-02 15:48:45 -05:00
|
|
|
|
|
|
|
/* If the user program contains a vertex shader then we don't need
|
|
|
|
to generate one */
|
|
|
|
if (user_program &&
|
|
|
|
_cogl_program_has_vertex_shader (user_program))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* We reuse two grow-only GStrings for code-gen. One string
|
|
|
|
contains the uniform and attribute declarations while the
|
|
|
|
other contains the main function. We need two strings
|
|
|
|
because we need to dynamically declare attributes as the
|
|
|
|
add_layer callback is invoked */
|
|
|
|
g_string_set_size (ctx->codegen_header_buffer, 0);
|
|
|
|
g_string_set_size (ctx->codegen_source_buffer, 0);
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state->header = ctx->codegen_header_buffer;
|
|
|
|
shader_state->source = ctx->codegen_source_buffer;
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
g_string_append (shader_state->source,
|
2010-12-02 15:48:45 -05:00
|
|
|
"void\n"
|
|
|
|
"main ()\n"
|
|
|
|
"{\n");
|
|
|
|
|
2011-07-07 15:44:56 -04:00
|
|
|
if (ctx->driver == COGL_DRIVER_GLES2)
|
|
|
|
/* There is no builtin uniform for the pointsize on GLES2 so we need
|
|
|
|
to copy it from the custom uniform in the vertex shader */
|
2011-06-30 08:39:48 -04:00
|
|
|
g_string_append (shader_state->source,
|
2011-07-07 15:44:56 -04:00
|
|
|
" cogl_point_size_out = cogl_point_size_in;\n");
|
2010-12-05 13:02:05 -05:00
|
|
|
/* On regular OpenGL we'll just flush the point size builtin */
|
2011-07-07 15:44:56 -04:00
|
|
|
else if (pipelines_difference & COGL_PIPELINE_STATE_POINT_SIZE)
|
2010-12-05 13:02:05 -05:00
|
|
|
{
|
|
|
|
CoglPipeline *authority =
|
|
|
|
_cogl_pipeline_get_authority (pipeline, COGL_PIPELINE_STATE_POINT_SIZE);
|
|
|
|
|
|
|
|
if (ctx->point_size_cache != authority->big_state->point_size)
|
|
|
|
{
|
2011-07-06 16:51:00 -04:00
|
|
|
GE( ctx, glPointSize (authority->big_state->point_size) );
|
2010-12-05 13:02:05 -05:00
|
|
|
ctx->point_size_cache = authority->big_state->point_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-02 15:48:45 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_cogl_pipeline_vertend_glsl_add_layer (CoglPipeline *pipeline,
|
|
|
|
CoglPipelineLayer *layer,
|
|
|
|
unsigned long layers_difference)
|
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
CoglPipelineShaderState *shader_state;
|
2010-12-02 15:48:45 -05:00
|
|
|
int unit_index;
|
|
|
|
|
2011-07-07 15:44:56 -04:00
|
|
|
_COGL_GET_CONTEXT (ctx, FALSE);
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state = get_shader_state (pipeline);
|
2010-12-02 15:48:45 -05:00
|
|
|
|
|
|
|
unit_index = _cogl_pipeline_layer_get_unit_index (layer);
|
|
|
|
|
2011-07-07 15:44:56 -04:00
|
|
|
if (ctx->driver != COGL_DRIVER_GLES2)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
2011-07-07 15:44:56 -04:00
|
|
|
/* We are using the fixed function uniforms for the user matrices
|
|
|
|
and the only way to set them is with the fixed function API so we
|
|
|
|
still need to flush them here */
|
|
|
|
if (layers_difference & COGL_PIPELINE_LAYER_STATE_USER_MATRIX)
|
|
|
|
{
|
|
|
|
CoglPipelineLayerState state = COGL_PIPELINE_LAYER_STATE_USER_MATRIX;
|
|
|
|
CoglPipelineLayer *authority =
|
|
|
|
_cogl_pipeline_layer_get_authority (layer, state);
|
|
|
|
CoglTextureUnit *unit = _cogl_get_texture_unit (unit_index);
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-07-07 15:44:56 -04:00
|
|
|
_cogl_matrix_stack_set (unit->matrix_stack,
|
|
|
|
&authority->big_state->matrix);
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-07-07 15:44:56 -04:00
|
|
|
_cogl_set_active_texture_unit (unit_index);
|
2011-02-09 10:24:43 -05:00
|
|
|
|
2011-07-07 15:44:56 -04:00
|
|
|
_cogl_matrix_stack_flush_to_gl (unit->matrix_stack,
|
|
|
|
COGL_MATRIX_TEXTURE);
|
|
|
|
}
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
if (shader_state->source == NULL)
|
2010-12-02 15:48:45 -05:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* Transform the texture coordinates by the layer's user matrix.
|
|
|
|
*
|
|
|
|
* FIXME: this should avoid doing the transform if there is no user
|
|
|
|
* matrix set. This might need a separate layer state flag for
|
|
|
|
* whether there is a user matrix
|
|
|
|
*
|
|
|
|
* FIXME: we could be more clever here and try to detect if the
|
|
|
|
* fragment program is going to use the texture coordinates and
|
|
|
|
* avoid setting them if not
|
|
|
|
*/
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
g_string_append_printf (shader_state->source,
|
2010-12-02 15:48:45 -05:00
|
|
|
" cogl_tex_coord_out[%i] = "
|
|
|
|
"cogl_texture_matrix[%i] * cogl_tex_coord%i_in;\n",
|
|
|
|
unit_index, unit_index, unit_index);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_cogl_pipeline_vertend_glsl_end (CoglPipeline *pipeline,
|
|
|
|
unsigned long pipelines_difference)
|
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
CoglPipelineShaderState *shader_state;
|
2010-12-02 15:48:45 -05:00
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, FALSE);
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state = get_shader_state (pipeline);
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
if (shader_state->source)
|
2010-12-02 15:48:45 -05:00
|
|
|
{
|
|
|
|
const char *source_strings[2];
|
|
|
|
GLint lengths[2];
|
|
|
|
GLint compile_status;
|
|
|
|
GLuint shader;
|
|
|
|
int n_layers;
|
|
|
|
|
|
|
|
COGL_STATIC_COUNTER (vertend_glsl_compile_counter,
|
|
|
|
"glsl vertex compile counter",
|
|
|
|
"Increments each time a new GLSL "
|
|
|
|
"vertex shader is compiled",
|
|
|
|
0 /* no application private data */);
|
|
|
|
COGL_COUNTER_INC (_cogl_uprof_context, vertend_glsl_compile_counter);
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
g_string_append (shader_state->source,
|
2010-12-02 15:48:45 -05:00
|
|
|
" cogl_position_out = "
|
|
|
|
"cogl_modelview_projection_matrix * "
|
|
|
|
"cogl_position_in;\n"
|
|
|
|
" cogl_color_out = cogl_color_in;\n"
|
|
|
|
"}\n");
|
|
|
|
|
2011-07-06 16:51:00 -04:00
|
|
|
GE_RET( shader, ctx, glCreateShader (GL_VERTEX_SHADER) );
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
lengths[0] = shader_state->header->len;
|
|
|
|
source_strings[0] = shader_state->header->str;
|
|
|
|
lengths[1] = shader_state->source->len;
|
|
|
|
source_strings[1] = shader_state->source->str;
|
2010-12-02 15:48:45 -05:00
|
|
|
|
|
|
|
n_layers = cogl_pipeline_get_n_layers (pipeline);
|
|
|
|
|
|
|
|
_cogl_shader_set_source_with_boilerplate (shader, GL_VERTEX_SHADER,
|
|
|
|
n_layers,
|
|
|
|
2, /* count */
|
|
|
|
source_strings, lengths);
|
|
|
|
|
2011-07-06 16:51:00 -04:00
|
|
|
GE( ctx, glCompileShader (shader) );
|
|
|
|
GE( ctx, glGetShaderiv (shader, GL_COMPILE_STATUS, &compile_status) );
|
2010-12-02 15:48:45 -05:00
|
|
|
|
|
|
|
if (!compile_status)
|
|
|
|
{
|
|
|
|
GLint len = 0;
|
|
|
|
char *shader_log;
|
|
|
|
|
2011-07-06 16:51:00 -04:00
|
|
|
GE( ctx, glGetShaderiv (shader, GL_INFO_LOG_LENGTH, &len) );
|
2010-12-02 15:48:45 -05:00
|
|
|
shader_log = g_alloca (len);
|
2011-07-06 16:51:00 -04:00
|
|
|
GE( ctx, glGetShaderInfoLog (shader, len, &len, shader_log) );
|
2010-12-02 15:48:45 -05:00
|
|
|
g_warning ("Shader compilation failed:\n%s", shader_log);
|
|
|
|
}
|
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state->header = NULL;
|
|
|
|
shader_state->source = NULL;
|
|
|
|
shader_state->gl_shader = shader;
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_cogl_pipeline_vertend_glsl_pre_change_notify (CoglPipeline *pipeline,
|
|
|
|
CoglPipelineState change,
|
|
|
|
const CoglColor *new_color)
|
|
|
|
{
|
|
|
|
if ((change & COGL_PIPELINE_STATE_AFFECTS_VERTEX_CODEGEN))
|
2011-06-30 08:39:48 -04:00
|
|
|
dirty_shader_state (pipeline);
|
2010-12-02 15:48:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* NB: layers are considered immutable once they have any dependants
|
|
|
|
* so although multiple pipelines can end up depending on a single
|
|
|
|
* static layer, we can guarantee that if a layer is being *changed*
|
|
|
|
* then it can only have one pipeline depending on it.
|
|
|
|
*
|
|
|
|
* XXX: Don't forget this is *pre* change, we can't read the new value
|
|
|
|
* yet!
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
_cogl_pipeline_vertend_glsl_layer_pre_change_notify (
|
|
|
|
CoglPipeline *owner,
|
|
|
|
CoglPipelineLayer *layer,
|
|
|
|
CoglPipelineLayerState change)
|
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
CoglPipelineShaderState *shader_state;
|
2010-12-02 15:48:45 -05:00
|
|
|
|
2011-06-30 08:39:48 -04:00
|
|
|
shader_state = get_shader_state (owner);
|
|
|
|
if (!shader_state)
|
2010-12-02 15:48:45 -05:00
|
|
|
return;
|
|
|
|
|
|
|
|
if ((change & COGL_PIPELINE_LAYER_STATE_AFFECTS_VERTEX_CODEGEN))
|
|
|
|
{
|
2011-06-30 08:39:48 -04:00
|
|
|
dirty_shader_state (owner);
|
2010-12-02 15:48:45 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: we could be saving snippets of texture combine code along
|
|
|
|
* with each layer and then when a layer changes we would just free
|
|
|
|
* the snippet. */
|
|
|
|
}
|
|
|
|
|
|
|
|
const CoglPipelineVertend _cogl_pipeline_glsl_vertend =
|
|
|
|
{
|
|
|
|
_cogl_pipeline_vertend_glsl_start,
|
|
|
|
_cogl_pipeline_vertend_glsl_add_layer,
|
|
|
|
_cogl_pipeline_vertend_glsl_end,
|
|
|
|
_cogl_pipeline_vertend_glsl_pre_change_notify,
|
|
|
|
_cogl_pipeline_vertend_glsl_layer_pre_change_notify
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* COGL_PIPELINE_VERTEND_GLSL */
|