Module: Mesa Branch: radeon-rewrite Commit: 646325a5efb3cf4157623d115d6d8fa36f0b357d URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=646325a5efb3cf4157623d115d6d8fa36f0b357d
Author: Dave Airlie <[email protected]> Date: Tue Feb 17 10:27:45 2009 +1000 radeon: fix not emitting texture state correctly this is whole texture dirty bit is probably not needed with the current codebase, need to revisit --- src/mesa/drivers/dri/radeon/radeon_texstate.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mesa/drivers/dri/radeon/radeon_texstate.c b/src/mesa/drivers/dri/radeon/radeon_texstate.c index 0dc3557..2aa1a83 100644 --- a/src/mesa/drivers/dri/radeon/radeon_texstate.c +++ b/src/mesa/drivers/dri/radeon/radeon_texstate.c @@ -973,6 +973,8 @@ static GLboolean setup_hardware_state(r100ContextPtr rmesa, radeonTexObj *t, int if (t->base.Target == GL_TEXTURE_RECTANGLE_NV) { t->pp_txformat |= RADEON_TXFORMAT_NON_POWER2; } + + t->dirty_state = R100_TEX_ALL; return GL_TRUE; } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
