2933423ca7
Previously on GLES2 where there is no builtin point size uniform then we would always add a line to the vertex shader to write to the builtin point size output because when generating the shader it is not possible to determine if the pipeline will be used to draw points or not. This patch changes it so that the default point size is 0.0f which is documented to have undefined results when drawing points. That way we can avoid adding the point size code to the shader in that case. The assumption is that any application that is drawing points will probably have explicitly set the point size on the pipeline anyway so it is not a big deal to change the default size from 1.0f. This adds a new pipeline state flag to track whether the point size is non-zero. This needs to be its own state because altering it needs to cause a different shader to be added to the pipeline cache. The state flags that affect the vertex shader have been changed from a constant to a runtime function because they will be different depending on whether there is a builtin point size uniform. There is also a unit test to ensure that changing the point size does or doesn't generate a new shader depending on the values. Reviewed-by: Robert Bragg <robert@linux.intel.com> (cherry picked from commit b2eba06e16b587acbf5c57944a70ceccecb4f175) Conflicts: cogl/cogl-pipeline-private.h cogl/cogl-pipeline-state-private.h cogl/cogl-pipeline-state.c cogl/cogl-pipeline.c
191 lines
6.3 KiB
C
191 lines
6.3 KiB
C
/*
|
|
* Cogl
|
|
*
|
|
* An object oriented GL/GLES Abstraction/Utility Layer
|
|
*
|
|
* Copyright (C) 2008,2009,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:
|
|
* Robert Bragg <robert@linux.intel.com>
|
|
*/
|
|
|
|
#ifndef __COGL_PIPELINE_STATE_PRIVATE_H
|
|
#define __COGL_PIPELINE_STATE_PRIVATE_H
|
|
|
|
CoglPipeline *
|
|
_cogl_pipeline_get_user_program (CoglPipeline *pipeline);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_has_vertex_snippets (CoglPipeline *pipeline);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_has_fragment_snippets (CoglPipeline *pipeline);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_has_non_layer_vertex_snippets (CoglPipeline *pipeline);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_has_non_layer_fragment_snippets (CoglPipeline *pipeline);
|
|
|
|
void
|
|
_cogl_pipeline_set_fog_state (CoglPipeline *pipeline,
|
|
const CoglPipelineFogState *fog_state);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_color_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_lighting_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_alpha_func_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_alpha_func_reference_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_blend_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_depth_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_fog_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_non_zero_point_size_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_point_size_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
CoglBool
|
|
_cogl_pipeline_per_vertex_point_size_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_logic_ops_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_user_shader_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_cull_face_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_uniforms_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_vertex_snippets_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
CoglBool
|
|
_cogl_pipeline_fragment_snippets_state_equal (CoglPipeline *authority0,
|
|
CoglPipeline *authority1);
|
|
|
|
void
|
|
_cogl_pipeline_hash_color_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_blend_enable_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_layers_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_lighting_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_alpha_func_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_alpha_func_reference_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_blend_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_user_shader_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_depth_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_fog_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_non_zero_point_size_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_point_size_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_per_vertex_point_size_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_logic_ops_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_cull_face_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_uniforms_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_vertex_snippets_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_hash_fragment_snippets_state (CoglPipeline *authority,
|
|
CoglPipelineHashState *state);
|
|
|
|
void
|
|
_cogl_pipeline_compare_uniform_differences (unsigned long *differences,
|
|
CoglPipeline *pipeline0,
|
|
CoglPipeline *pipeline1);
|
|
|
|
#endif /* __COGL_PIPELINE_STATE_PRIVATE_H */
|