From: Xiang, Haihao Date: Tue, 11 Nov 2008 05:16:20 +0000 (+0800) Subject: mesa: update new state for RasterPos like other operations. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=064b04d464e006e76e888b481900b3f63f015063;p=mesa.git mesa: update new state for RasterPos like other operations. This fixes a lighting issue when drawing a bitmap. --- diff --git a/src/mesa/main/rastpos.c b/src/mesa/main/rastpos.c index 155140f3ccc..9842172f460 100644 --- a/src/mesa/main/rastpos.c +++ b/src/mesa/main/rastpos.c @@ -50,12 +50,12 @@ rasterpos(GLfloat x, GLfloat y, GLfloat z, GLfloat w) p[2] = z; p[3] = w; - if (ctx->NewState) - _mesa_update_state( ctx ); - ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx); FLUSH_CURRENT(ctx, 0); + if (ctx->NewState) + _mesa_update_state( ctx ); + ctx->Driver.RasterPos(ctx, p); }