Module: Mesa Branch: master Commit: 60343b67f7741bba8ca086f4b5431e68e58c75a2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=60343b67f7741bba8ca086f4b5431e68e58c75a2
Author: Kenneth Graunke <[email protected]> Date: Mon Jan 9 11:00:23 2012 -0800 i965: Add missing _NEW_PROGRAM dirty bit to the gen7_sbe_state atom. According to a comment in gen6_sf_state, calls to get_attr_override need both _NEW_PROGRAM and _NEW_LIGHT. Since Gen7 reuses the same function, the same dirty bits should apply. NOTE: This is a candidate for the 7.11 branch. Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Eric Anholt <[email protected]> --- src/mesa/drivers/dri/i965/gen7_sf_state.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mesa/drivers/dri/i965/gen7_sf_state.c b/src/mesa/drivers/dri/i965/gen7_sf_state.c index 8876722..c8448af 100644 --- a/src/mesa/drivers/dri/i965/gen7_sf_state.c +++ b/src/mesa/drivers/dri/i965/gen7_sf_state.c @@ -105,6 +105,7 @@ upload_sbe_state(struct brw_context *brw) */ assert(input_index < 16 || attr == input_index); + /* _NEW_LIGHT | _NEW_PROGRAM */ attr_overrides[input_index++] = get_attr_override(&vue_map, urb_entry_read_offset, attr, ctx->VertexProgram._TwoSideEnabled); @@ -133,6 +134,7 @@ const struct brw_tracked_state gen7_sbe_state = { .dirty = { .mesa = (_NEW_LIGHT | _NEW_POINT | + _NEW_PROGRAM | _NEW_TRANSFORM), .brw = (BRW_NEW_CONTEXT | BRW_NEW_FRAGMENT_PROGRAM), _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
