Add cogl_pipeline_set_layer_null_texture()
This adds a public function to replace the texture for a layer with the default white texture. It is equivalent to calling cogl_pipeline_set_layer_texture with NULL for the texture object except that it also lets you choose a type for the texture. The idea is that applications using a base pipeline to make multiple copies that can share the generated shaders can use this function to make the layer come into existence with the right texture type. Previously the idiom would be to create a 1x1 dummy texture of the right type but this ends up creating lots of redundant little textures. Reviewed-by: Robert Bragg <robert@linux.intel.com>
This commit is contained in:
@ -323,6 +323,43 @@ cogl_pipeline_set_layer_texture (CoglPipeline *pipeline,
|
||||
_cogl_pipeline_set_layer_texture_data (pipeline, layer_index, texture);
|
||||
}
|
||||
|
||||
void
|
||||
cogl_pipeline_set_layer_null_texture (CoglPipeline *pipeline,
|
||||
int layer_index,
|
||||
CoglTextureType texture_type)
|
||||
{
|
||||
CoglContext *ctx = _cogl_context_get_default ();
|
||||
|
||||
/* Disallow setting texture types that aren't supported */
|
||||
switch (texture_type)
|
||||
{
|
||||
case COGL_TEXTURE_TYPE_2D:
|
||||
break;
|
||||
|
||||
case COGL_TEXTURE_TYPE_3D:
|
||||
if (ctx->default_gl_texture_3d_tex == NULL)
|
||||
{
|
||||
g_warning ("The default 3D texture was set on a pipeline but "
|
||||
"3D textures are not supported");
|
||||
texture_type = COGL_TEXTURE_TYPE_2D;
|
||||
return;
|
||||
}
|
||||
break;
|
||||
|
||||
case COGL_TEXTURE_TYPE_RECTANGLE:
|
||||
if (ctx->default_gl_texture_rect_tex == NULL)
|
||||
{
|
||||
g_warning ("The default rectangle texture was set on a pipeline but "
|
||||
"rectangle textures are not supported");
|
||||
texture_type = COGL_TEXTURE_TYPE_2D;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
_cogl_pipeline_set_layer_texture_type (pipeline, layer_index, texture_type);
|
||||
_cogl_pipeline_set_layer_texture_data (pipeline, layer_index, NULL);
|
||||
}
|
||||
|
||||
void
|
||||
_cogl_pipeline_set_layer_wrap_modes (CoglPipeline *pipeline,
|
||||
CoglPipelineLayer *layer,
|
||||
|
Reference in New Issue
Block a user