2011-09-07 22:44:37 +00:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-22 01:28:54 +00:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2011-09-07 22:44:37 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2008,2009,2010 Intel Corporation.
|
|
|
|
*
|
2014-02-22 01:28:54 +00: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:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* 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.
|
2011-09-07 22:44:37 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-11-17 16:52:21 +00:00
|
|
|
_cogl_pipeline_has_vertex_snippets (CoglPipeline *pipeline);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-11-17 16:52:21 +00:00
|
|
|
_cogl_pipeline_has_fragment_snippets (CoglPipeline *pipeline);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-11-25 17:59:52 +00:00
|
|
|
_cogl_pipeline_has_non_layer_vertex_snippets (CoglPipeline *pipeline);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-11-25 17:59:52 +00:00
|
|
|
_cogl_pipeline_has_non_layer_fragment_snippets (CoglPipeline *pipeline);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-09-07 22:44:37 +00:00
|
|
|
_cogl_pipeline_color_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-09-07 22:44:37 +00:00
|
|
|
_cogl_pipeline_alpha_func_state_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-09-07 22:44:37 +00:00
|
|
|
_cogl_pipeline_alpha_func_reference_state_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-09-07 22:44:37 +00:00
|
|
|
_cogl_pipeline_blend_state_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-09-07 22:44:37 +00:00
|
|
|
_cogl_pipeline_depth_state_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2013-06-20 12:25:49 +00:00
|
|
|
_cogl_pipeline_non_zero_point_size_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-09-07 22:44:37 +00:00
|
|
|
_cogl_pipeline_point_size_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2012-11-08 16:56:02 +00:00
|
|
|
_cogl_pipeline_per_vertex_point_size_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
2011-09-07 22:44:37 +00:00
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-09-07 22:44:37 +00:00
|
|
|
_cogl_pipeline_logic_ops_state_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-09-07 22:44:37 +00:00
|
|
|
_cogl_pipeline_user_shader_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-09-15 10:25:39 +00:00
|
|
|
_cogl_pipeline_cull_face_state_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
cogl-pipeline: Add support for setting uniform values
This adds the following new public experimental functions to set
uniform values on a CoglPipeline:
void
cogl_pipeline_set_uniform_1f (CoglPipeline *pipeline,
int uniform_location,
float value);
void
cogl_pipeline_set_uniform_1i (CoglPipeline *pipeline,
int uniform_location,
int value);
void
cogl_pipeline_set_uniform_float (CoglPipeline *pipeline,
int uniform_location,
int n_components,
int count,
const float *value);
void
cogl_pipeline_set_uniform_int (CoglPipeline *pipeline,
int uniform_location,
int n_components,
int count,
const int *value);
void
cogl_pipeline_set_uniform_matrix (CoglPipeline *pipeline,
int uniform_location,
int dimensions,
int count,
gboolean transpose,
const float *value);
These are similar to the old functions used to set uniforms on a
CoglProgram. To get a value to pass in as the uniform_location there
is also:
int
cogl_pipeline_get_uniform_location (CoglPipeline *pipeline,
const char *uniform_name);
Conceptually the uniform locations are tied to the pipeline so that
whenever setting a value for a new pipeline the application is
expected to call this function. However in practice the uniform
locations are global to the CoglContext. The names are stored in a
linked list where the position in the list is the uniform location.
The global indices are used so that each pipeline can store a mask of
which uniforms it overrides. That way it is quicker to detect which
uniforms are different from the last pipeline that used the same
CoglProgramState so it can avoid flushing uniforms that haven't
changed. Currently the values are not actually compared which means
that it will only avoid flushing a uniform if there is a common
ancestor that sets the value (or if the same pipeline is being flushed
again - in which case the pipeline and its common ancestor are the
same thing).
The uniform values are stored in the big state of the pipeline as a
sparse linked list. A bitmask stores which values have been overridden
and only overridden values are stored in the linked list.
Reviewed-by: Robert Bragg <robert@linux.intel.com>
2011-11-03 17:20:43 +00:00
|
|
|
_cogl_pipeline_uniforms_state_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-11-17 16:52:21 +00:00
|
|
|
_cogl_pipeline_vertex_snippets_state_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2018-11-24 12:04:47 +00:00
|
|
|
gboolean
|
2011-11-17 16:52:21 +00:00
|
|
|
_cogl_pipeline_fragment_snippets_state_equal (CoglPipeline *authority0,
|
|
|
|
CoglPipeline *authority1);
|
|
|
|
|
2011-09-07 22:44:37 +00:00
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_color_state (CoglPipeline *authority,
|
|
|
|
CoglPipelineHashState *state);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_layers_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);
|
|
|
|
|
2013-06-20 12:25:49 +00:00
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_non_zero_point_size_state (CoglPipeline *authority,
|
|
|
|
CoglPipelineHashState *state);
|
|
|
|
|
2011-09-07 22:44:37 +00:00
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_point_size_state (CoglPipeline *authority,
|
|
|
|
CoglPipelineHashState *state);
|
2012-11-08 16:56:02 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_per_vertex_point_size_state (CoglPipeline *authority,
|
|
|
|
CoglPipelineHashState *state);
|
2011-09-07 22:44:37 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_logic_ops_state (CoglPipeline *authority,
|
|
|
|
CoglPipelineHashState *state);
|
|
|
|
|
2011-09-15 10:25:39 +00:00
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_cull_face_state (CoglPipeline *authority,
|
|
|
|
CoglPipelineHashState *state);
|
|
|
|
|
cogl-pipeline: Add support for setting uniform values
This adds the following new public experimental functions to set
uniform values on a CoglPipeline:
void
cogl_pipeline_set_uniform_1f (CoglPipeline *pipeline,
int uniform_location,
float value);
void
cogl_pipeline_set_uniform_1i (CoglPipeline *pipeline,
int uniform_location,
int value);
void
cogl_pipeline_set_uniform_float (CoglPipeline *pipeline,
int uniform_location,
int n_components,
int count,
const float *value);
void
cogl_pipeline_set_uniform_int (CoglPipeline *pipeline,
int uniform_location,
int n_components,
int count,
const int *value);
void
cogl_pipeline_set_uniform_matrix (CoglPipeline *pipeline,
int uniform_location,
int dimensions,
int count,
gboolean transpose,
const float *value);
These are similar to the old functions used to set uniforms on a
CoglProgram. To get a value to pass in as the uniform_location there
is also:
int
cogl_pipeline_get_uniform_location (CoglPipeline *pipeline,
const char *uniform_name);
Conceptually the uniform locations are tied to the pipeline so that
whenever setting a value for a new pipeline the application is
expected to call this function. However in practice the uniform
locations are global to the CoglContext. The names are stored in a
linked list where the position in the list is the uniform location.
The global indices are used so that each pipeline can store a mask of
which uniforms it overrides. That way it is quicker to detect which
uniforms are different from the last pipeline that used the same
CoglProgramState so it can avoid flushing uniforms that haven't
changed. Currently the values are not actually compared which means
that it will only avoid flushing a uniform if there is a common
ancestor that sets the value (or if the same pipeline is being flushed
again - in which case the pipeline and its common ancestor are the
same thing).
The uniform values are stored in the big state of the pipeline as a
sparse linked list. A bitmask stores which values have been overridden
and only overridden values are stored in the linked list.
Reviewed-by: Robert Bragg <robert@linux.intel.com>
2011-11-03 17:20:43 +00:00
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_uniforms_state (CoglPipeline *authority,
|
|
|
|
CoglPipelineHashState *state);
|
|
|
|
|
2011-11-17 16:52:21 +00:00
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_vertex_snippets_state (CoglPipeline *authority,
|
|
|
|
CoglPipelineHashState *state);
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_pipeline_hash_fragment_snippets_state (CoglPipeline *authority,
|
|
|
|
CoglPipelineHashState *state);
|
|
|
|
|
cogl-pipeline: Add support for setting uniform values
This adds the following new public experimental functions to set
uniform values on a CoglPipeline:
void
cogl_pipeline_set_uniform_1f (CoglPipeline *pipeline,
int uniform_location,
float value);
void
cogl_pipeline_set_uniform_1i (CoglPipeline *pipeline,
int uniform_location,
int value);
void
cogl_pipeline_set_uniform_float (CoglPipeline *pipeline,
int uniform_location,
int n_components,
int count,
const float *value);
void
cogl_pipeline_set_uniform_int (CoglPipeline *pipeline,
int uniform_location,
int n_components,
int count,
const int *value);
void
cogl_pipeline_set_uniform_matrix (CoglPipeline *pipeline,
int uniform_location,
int dimensions,
int count,
gboolean transpose,
const float *value);
These are similar to the old functions used to set uniforms on a
CoglProgram. To get a value to pass in as the uniform_location there
is also:
int
cogl_pipeline_get_uniform_location (CoglPipeline *pipeline,
const char *uniform_name);
Conceptually the uniform locations are tied to the pipeline so that
whenever setting a value for a new pipeline the application is
expected to call this function. However in practice the uniform
locations are global to the CoglContext. The names are stored in a
linked list where the position in the list is the uniform location.
The global indices are used so that each pipeline can store a mask of
which uniforms it overrides. That way it is quicker to detect which
uniforms are different from the last pipeline that used the same
CoglProgramState so it can avoid flushing uniforms that haven't
changed. Currently the values are not actually compared which means
that it will only avoid flushing a uniform if there is a common
ancestor that sets the value (or if the same pipeline is being flushed
again - in which case the pipeline and its common ancestor are the
same thing).
The uniform values are stored in the big state of the pipeline as a
sparse linked list. A bitmask stores which values have been overridden
and only overridden values are stored in the linked list.
Reviewed-by: Robert Bragg <robert@linux.intel.com>
2011-11-03 17:20:43 +00:00
|
|
|
void
|
|
|
|
_cogl_pipeline_compare_uniform_differences (unsigned long *differences,
|
|
|
|
CoglPipeline *pipeline0,
|
|
|
|
CoglPipeline *pipeline1);
|
|
|
|
|
2011-09-07 22:44:37 +00:00
|
|
|
#endif /* __COGL_PIPELINE_STATE_PRIVATE_H */
|