2010-06-15 11:44:52 -04:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2010-10-27 13:54:57 -04:00
|
|
|
#include "cogl-pipeline-private.h"
|
|
|
|
#include "cogl-pipeline-opengl-private.h"
|
2010-07-01 20:07:36 -04:00
|
|
|
|
2010-11-29 11:56:41 -05:00
|
|
|
#ifdef COGL_PIPELINE_FRAGEND_FIXED
|
2010-07-01 20:07:36 -04:00
|
|
|
|
2010-06-15 11:44:52 -04:00
|
|
|
#include "cogl.h"
|
|
|
|
#include "cogl-internal.h"
|
2010-11-04 18:25:52 -04:00
|
|
|
#include "cogl-context-private.h"
|
2010-06-15 11:44:52 -04:00
|
|
|
#include "cogl-handle.h"
|
|
|
|
|
|
|
|
#include "cogl-texture-private.h"
|
|
|
|
#include "cogl-blend-string.h"
|
|
|
|
#include "cogl-profile.h"
|
2010-12-02 15:48:45 -05:00
|
|
|
#include "cogl-program-private.h"
|
2010-09-13 06:30:30 -04:00
|
|
|
|
2010-06-15 11:44:52 -04:00
|
|
|
#include <glib.h>
|
|
|
|
#include <glib/gprintf.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2010-11-29 11:56:41 -05:00
|
|
|
const CoglPipelineFragend _cogl_pipeline_fixed_fragend;
|
2010-09-14 07:13:30 -04:00
|
|
|
|
2010-11-30 07:48:27 -05:00
|
|
|
static void
|
|
|
|
_cogl_disable_texture_unit (int unit_index)
|
|
|
|
{
|
|
|
|
CoglTextureUnit *unit;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, NO_RETVAL);
|
|
|
|
|
|
|
|
unit = &g_array_index (ctx->texture_units, CoglTextureUnit, unit_index);
|
|
|
|
|
|
|
|
if (unit->enabled_gl_target)
|
|
|
|
{
|
|
|
|
_cogl_set_active_texture_unit (unit_index);
|
|
|
|
GE (glDisable (unit->enabled_gl_target));
|
|
|
|
unit->enabled_gl_target = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-15 11:44:52 -04:00
|
|
|
static int
|
2010-11-30 07:48:27 -05:00
|
|
|
get_max_texture_units (void)
|
2010-06-15 11:44:52 -04:00
|
|
|
{
|
|
|
|
_COGL_GET_CONTEXT (ctx, 0);
|
|
|
|
|
|
|
|
/* This function is called quite often so we cache the value to
|
|
|
|
avoid too many GL calls */
|
|
|
|
if (ctx->max_texture_units == -1)
|
|
|
|
{
|
|
|
|
ctx->max_texture_units = 1;
|
|
|
|
GE (glGetIntegerv (GL_MAX_TEXTURE_UNITS,
|
|
|
|
&ctx->max_texture_units));
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx->max_texture_units;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2010-11-29 11:56:41 -05:00
|
|
|
_cogl_pipeline_fragend_fixed_start (CoglPipeline *pipeline,
|
2010-06-15 11:44:52 -04:00
|
|
|
int n_layers,
|
2010-12-02 16:08:30 -05:00
|
|
|
unsigned long pipelines_difference,
|
|
|
|
int n_tex_coord_attribs)
|
2010-06-15 11:44:52 -04:00
|
|
|
{
|
2010-11-24 12:33:07 -05:00
|
|
|
CoglHandle user_program;
|
|
|
|
|
2011-01-24 09:28:00 -05:00
|
|
|
if (G_UNLIKELY (COGL_DEBUG_ENABLED (COGL_DEBUG_DISABLE_FIXED)))
|
2010-11-24 12:29:00 -05:00
|
|
|
return FALSE;
|
|
|
|
|
2010-12-02 15:48:45 -05:00
|
|
|
/* If there is a user program with a fragment shader then the
|
|
|
|
appropriate backend for that language should handle it. We can
|
|
|
|
still use the fixed fragment backend if the program only contains
|
|
|
|
a vertex shader */
|
2010-11-24 12:33:07 -05:00
|
|
|
user_program = cogl_pipeline_get_user_program (pipeline);
|
2010-12-02 15:48:45 -05:00
|
|
|
if (user_program != COGL_INVALID_HANDLE &&
|
|
|
|
_cogl_program_has_fragment_shader (user_program))
|
2010-11-24 12:33:07 -05:00
|
|
|
return FALSE;
|
|
|
|
|
2010-12-02 15:48:45 -05:00
|
|
|
_cogl_use_fragment_program (0, COGL_PIPELINE_PROGRAM_TYPE_FIXED);
|
2010-06-15 11:44:52 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2010-11-29 11:56:41 -05:00
|
|
|
_cogl_pipeline_fragend_fixed_add_layer (CoglPipeline *pipeline,
|
2010-10-27 13:54:57 -04:00
|
|
|
CoglPipelineLayer *layer,
|
2010-06-15 11:44:52 -04:00
|
|
|
unsigned long layers_difference)
|
|
|
|
{
|
|
|
|
CoglTextureUnit *unit =
|
2010-10-27 13:54:57 -04:00
|
|
|
_cogl_get_texture_unit (_cogl_pipeline_layer_get_unit_index (layer));
|
2010-06-15 11:44:52 -04:00
|
|
|
int unit_index = unit->index;
|
|
|
|
int n_rgb_func_args;
|
|
|
|
int n_alpha_func_args;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, FALSE);
|
|
|
|
|
|
|
|
/* XXX: Beware that since we are changing the active texture unit we
|
|
|
|
* must make sure we don't call into other Cogl components that may
|
|
|
|
* temporarily bind texture objects to query/modify parameters since
|
|
|
|
* they will end up binding texture unit 1. See
|
|
|
|
* _cogl_bind_gl_texture_transient for more details.
|
|
|
|
*/
|
|
|
|
_cogl_set_active_texture_unit (unit_index);
|
|
|
|
|
2010-11-30 07:48:27 -05:00
|
|
|
if (G_UNLIKELY (unit_index >= get_max_texture_units ()))
|
|
|
|
{
|
|
|
|
_cogl_disable_texture_unit (unit_index);
|
|
|
|
/* TODO: although this isn't considered an error that
|
|
|
|
* warrants falling back to a different backend we
|
|
|
|
* should print a warning here. */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Handle enabling or disabling the right texture target */
|
2011-01-11 11:02:06 -05:00
|
|
|
if (layers_difference & COGL_PIPELINE_LAYER_STATE_TEXTURE_TARGET)
|
2010-11-30 07:48:27 -05:00
|
|
|
{
|
2011-01-11 11:02:06 -05:00
|
|
|
CoglPipelineLayer *tex_authority =
|
2010-11-30 07:48:27 -05:00
|
|
|
_cogl_pipeline_layer_get_authority (layer,
|
2011-01-11 11:02:06 -05:00
|
|
|
COGL_PIPELINE_LAYER_STATE_TEXTURE_DATA);
|
|
|
|
CoglPipelineLayer *target_authority =
|
|
|
|
_cogl_pipeline_layer_get_authority (layer,
|
|
|
|
COGL_PIPELINE_LAYER_STATE_TEXTURE_TARGET);
|
|
|
|
/* XXX: currently layers with no associated texture fallback to
|
|
|
|
* using ctx->default_gl_texture_2d_tex so they have a texture
|
|
|
|
* target of GL_TEXTURE_2D */
|
|
|
|
GLenum gl_target =
|
|
|
|
tex_authority->texture ? target_authority->target : GL_TEXTURE_2D;
|
2010-11-30 07:48:27 -05:00
|
|
|
|
|
|
|
_cogl_set_active_texture_unit (unit_index);
|
|
|
|
|
|
|
|
/* The common GL code handles binding the right texture so we
|
|
|
|
just need to handle enabling and disabling it */
|
|
|
|
|
|
|
|
if (unit->enabled_gl_target != gl_target)
|
|
|
|
{
|
|
|
|
/* Disable the previous target if it's still enabled */
|
|
|
|
if (unit->enabled_gl_target)
|
|
|
|
GE (glDisable (unit->enabled_gl_target));
|
|
|
|
|
|
|
|
/* Enable the new target */
|
2011-01-24 09:28:00 -05:00
|
|
|
if (!G_UNLIKELY (COGL_DEBUG_ENABLED (COGL_DEBUG_DISABLE_TEXTURING)))
|
2010-11-30 07:48:27 -05:00
|
|
|
{
|
|
|
|
GE (glEnable (gl_target));
|
|
|
|
unit->enabled_gl_target = gl_target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Even though there may be no difference between the last flushed
|
|
|
|
* texture state and the current layers texture state it may be that the
|
|
|
|
* texture unit has been disabled for some time so we need to assert that
|
|
|
|
* it's enabled now.
|
|
|
|
*/
|
2011-01-24 09:28:00 -05:00
|
|
|
if (!G_UNLIKELY (COGL_DEBUG_ENABLED (COGL_DEBUG_DISABLE_TEXTURING)) &&
|
2010-11-30 07:48:27 -05:00
|
|
|
!unit->enabled_gl_target == 0)
|
|
|
|
{
|
|
|
|
_cogl_set_active_texture_unit (unit_index);
|
|
|
|
GE (glEnable (unit->gl_target));
|
|
|
|
unit->enabled_gl_target = unit->gl_target;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-27 13:54:57 -04:00
|
|
|
if (layers_difference & COGL_PIPELINE_LAYER_STATE_COMBINE)
|
2010-06-15 11:44:52 -04:00
|
|
|
{
|
2010-10-27 13:54:57 -04:00
|
|
|
CoglPipelineLayer *authority =
|
|
|
|
_cogl_pipeline_layer_get_authority (layer,
|
|
|
|
COGL_PIPELINE_LAYER_STATE_COMBINE);
|
|
|
|
CoglPipelineLayerBigState *big_state = authority->big_state;
|
2010-06-15 11:44:52 -04:00
|
|
|
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_COMBINE));
|
|
|
|
|
|
|
|
/* Set the combiner functions... */
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV,
|
|
|
|
GL_COMBINE_RGB,
|
|
|
|
big_state->texture_combine_rgb_func));
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV,
|
|
|
|
GL_COMBINE_ALPHA,
|
|
|
|
big_state->texture_combine_alpha_func));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Setup the function arguments...
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* For the RGB components... */
|
|
|
|
n_rgb_func_args =
|
|
|
|
_cogl_get_n_args_for_combine_func (big_state->texture_combine_rgb_func);
|
|
|
|
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_SRC0_RGB,
|
|
|
|
big_state->texture_combine_rgb_src[0]));
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_OPERAND0_RGB,
|
|
|
|
big_state->texture_combine_rgb_op[0]));
|
|
|
|
if (n_rgb_func_args > 1)
|
|
|
|
{
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_SRC1_RGB,
|
|
|
|
big_state->texture_combine_rgb_src[1]));
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_OPERAND1_RGB,
|
|
|
|
big_state->texture_combine_rgb_op[1]));
|
|
|
|
}
|
|
|
|
if (n_rgb_func_args > 2)
|
|
|
|
{
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_SRC2_RGB,
|
|
|
|
big_state->texture_combine_rgb_src[2]));
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_OPERAND2_RGB,
|
|
|
|
big_state->texture_combine_rgb_op[2]));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For the Alpha component */
|
|
|
|
n_alpha_func_args =
|
|
|
|
_cogl_get_n_args_for_combine_func (big_state->texture_combine_alpha_func);
|
|
|
|
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_SRC0_ALPHA,
|
|
|
|
big_state->texture_combine_alpha_src[0]));
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_OPERAND0_ALPHA,
|
|
|
|
big_state->texture_combine_alpha_op[0]));
|
|
|
|
if (n_alpha_func_args > 1)
|
|
|
|
{
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_SRC1_ALPHA,
|
|
|
|
big_state->texture_combine_alpha_src[1]));
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_OPERAND1_ALPHA,
|
|
|
|
big_state->texture_combine_alpha_op[1]));
|
|
|
|
}
|
|
|
|
if (n_alpha_func_args > 2)
|
|
|
|
{
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_SRC2_ALPHA,
|
|
|
|
big_state->texture_combine_alpha_src[2]));
|
|
|
|
GE (glTexEnvi (GL_TEXTURE_ENV, GL_OPERAND2_ALPHA,
|
|
|
|
big_state->texture_combine_alpha_op[2]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-30 17:28:38 -05:00
|
|
|
if (layers_difference & COGL_PIPELINE_LAYER_STATE_COMBINE_CONSTANT)
|
2010-06-15 11:44:52 -04:00
|
|
|
{
|
2010-10-27 13:54:57 -04:00
|
|
|
CoglPipelineLayer *authority =
|
2010-11-30 17:28:38 -05:00
|
|
|
_cogl_pipeline_layer_get_authority
|
|
|
|
(layer, COGL_PIPELINE_LAYER_STATE_COMBINE_CONSTANT);
|
2010-10-27 13:54:57 -04:00
|
|
|
CoglPipelineLayerBigState *big_state = authority->big_state;
|
2010-06-15 11:44:52 -04:00
|
|
|
|
|
|
|
GE (glTexEnvfv (GL_TEXTURE_ENV, GL_TEXTURE_ENV_COLOR,
|
|
|
|
big_state->texture_combine_constant));
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-11-30 07:48:27 -05:00
|
|
|
static gboolean
|
|
|
|
get_highest_unit_index_cb (CoglPipelineLayer *layer,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
int unit_index = _cogl_pipeline_layer_get_unit_index (layer);
|
|
|
|
int *highest_index = user_data;
|
|
|
|
|
|
|
|
*highest_index = unit_index;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-06-15 11:44:52 -04:00
|
|
|
static gboolean
|
2010-11-29 11:56:41 -05:00
|
|
|
_cogl_pipeline_fragend_fixed_end (CoglPipeline *pipeline,
|
2010-10-27 13:54:57 -04:00
|
|
|
unsigned long pipelines_difference)
|
2010-06-15 11:44:52 -04:00
|
|
|
{
|
2010-11-30 07:48:27 -05:00
|
|
|
int highest_unit_index = -1;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
_COGL_GET_CONTEXT (ctx, FALSE);
|
|
|
|
|
|
|
|
_cogl_pipeline_foreach_layer_internal (pipeline,
|
|
|
|
get_highest_unit_index_cb,
|
|
|
|
&highest_unit_index);
|
|
|
|
|
|
|
|
/* Disable additional texture units that may have previously been in use.. */
|
|
|
|
for (i = highest_unit_index + 1; i < ctx->texture_units->len; i++)
|
|
|
|
_cogl_disable_texture_unit (i);
|
|
|
|
|
2010-10-27 13:54:57 -04:00
|
|
|
if (pipelines_difference & COGL_PIPELINE_STATE_FOG)
|
2010-07-06 15:18:26 -04:00
|
|
|
{
|
2010-10-27 13:54:57 -04:00
|
|
|
CoglPipeline *authority =
|
|
|
|
_cogl_pipeline_get_authority (pipeline, COGL_PIPELINE_STATE_FOG);
|
|
|
|
CoglPipelineFogState *fog_state = &authority->big_state->fog_state;
|
2010-07-06 15:18:26 -04:00
|
|
|
|
|
|
|
if (fog_state->enabled)
|
|
|
|
{
|
|
|
|
GLfloat fogColor[4];
|
|
|
|
GLenum gl_mode = GL_LINEAR;
|
|
|
|
|
|
|
|
fogColor[0] = cogl_color_get_red_float (&fog_state->color);
|
|
|
|
fogColor[1] = cogl_color_get_green_float (&fog_state->color);
|
|
|
|
fogColor[2] = cogl_color_get_blue_float (&fog_state->color);
|
|
|
|
fogColor[3] = cogl_color_get_alpha_float (&fog_state->color);
|
|
|
|
|
|
|
|
GE (glEnable (GL_FOG));
|
|
|
|
|
|
|
|
GE (glFogfv (GL_FOG_COLOR, fogColor));
|
|
|
|
|
|
|
|
#if HAVE_COGL_GLES
|
|
|
|
switch (fog_state->mode)
|
|
|
|
{
|
|
|
|
case COGL_FOG_MODE_LINEAR:
|
|
|
|
gl_mode = GL_LINEAR;
|
|
|
|
break;
|
|
|
|
case COGL_FOG_MODE_EXPONENTIAL:
|
|
|
|
gl_mode = GL_EXP;
|
|
|
|
break;
|
|
|
|
case COGL_FOG_MODE_EXPONENTIAL_SQUARED:
|
|
|
|
gl_mode = GL_EXP2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* TODO: support other modes for GLES2 */
|
|
|
|
|
|
|
|
/* NB: GLES doesn't have glFogi */
|
|
|
|
GE (glFogf (GL_FOG_MODE, gl_mode));
|
|
|
|
GE (glHint (GL_FOG_HINT, GL_NICEST));
|
|
|
|
|
|
|
|
GE (glFogf (GL_FOG_DENSITY, fog_state->density));
|
|
|
|
GE (glFogf (GL_FOG_START, fog_state->z_near));
|
|
|
|
GE (glFogf (GL_FOG_END, fog_state->z_far));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
GE (glDisable (GL_FOG));
|
|
|
|
}
|
|
|
|
|
2010-06-15 11:44:52 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-11-29 11:56:41 -05:00
|
|
|
const CoglPipelineFragend _cogl_pipeline_fixed_fragend =
|
2010-06-15 11:44:52 -04:00
|
|
|
{
|
2010-11-29 11:56:41 -05:00
|
|
|
_cogl_pipeline_fragend_fixed_start,
|
|
|
|
_cogl_pipeline_fragend_fixed_add_layer,
|
2010-06-15 11:44:52 -04:00
|
|
|
NULL, /* passthrough */
|
2010-11-29 11:56:41 -05:00
|
|
|
_cogl_pipeline_fragend_fixed_end,
|
2010-10-27 13:54:57 -04:00
|
|
|
NULL, /* pipeline_change_notify */
|
|
|
|
NULL, /* pipeline_set_parent_notify */
|
2010-06-15 11:44:52 -04:00
|
|
|
NULL, /* layer_change_notify */
|
|
|
|
NULL /* free_priv */
|
|
|
|
};
|
|
|
|
|
2010-11-29 11:56:41 -05:00
|
|
|
#endif /* COGL_PIPELINE_FRAGEND_FIXED */
|
2010-07-01 20:07:36 -04:00
|
|
|
|