pipeline: don't dereference NULL program state

This avoid dereferencing a NULL arbfp program state in
_cogl_pipeline_backend_arbfp_layer_pre_change_notify for
_STATE_COMBINE_CONSTANT changes.
This commit is contained in:
Robert Bragg 2010-12-08 18:57:42 +00:00
parent 82f6800442
commit 87f979cfd8

View File

@ -1087,10 +1087,14 @@ _cogl_pipeline_backend_arbfp_layer_pre_change_notify (
if (change & COGL_PIPELINE_LAYER_STATE_COMBINE_CONSTANT) if (change & COGL_PIPELINE_LAYER_STATE_COMBINE_CONSTANT)
{ {
ArbfpProgramState *arbfp_program_state = ArbfpProgramState *arbfp_program_state = get_arbfp_program_state (owner);
get_arbfp_program_state (owner);
int unit_index = _cogl_pipeline_layer_get_unit_index (layer); if (arbfp_program_state)
arbfp_program_state->unit_state[unit_index].dirty_combine_constant = TRUE; {
int unit_index = _cogl_pipeline_layer_get_unit_index (layer);
arbfp_program_state->unit_state[unit_index].dirty_combine_constant =
TRUE;
}
} }
/* TODO: we could be saving snippets of texture combine code along /* TODO: we could be saving snippets of texture combine code along