From: Michel Dänzer Date: Mon, 17 Sep 2007 12:22:51 +0000 (+0100) Subject: Fix linux-dri-x86 build. X-Git-Tag: 062012170305~17580^2~390^2~4115^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf92350b5b2c8e14515fb8bbfacd8c06502dfb98;p=profile%2Fivi%2Fmesa.git Fix linux-dri-x86 build. --- diff --git a/src/mesa/state_tracker/st_atom_vs.c b/src/mesa/state_tracker/st_atom_vs.c index a1e6117..289a3e4 100644 --- a/src/mesa/state_tracker/st_atom_vs.c +++ b/src/mesa/state_tracker/st_atom_vs.c @@ -72,7 +72,7 @@ static void compile_vs( struct st_context *st ) #if defined(USE_X86_ASM) || defined(SLANG_X86) tgsi_emit_sse2( vp->vs.tokens, - &vp->vs.sse2_program ); + &vp->sse2_program ); #endif vp->dirty = 0; @@ -106,7 +106,7 @@ static void update_vs( struct st_context *st ) compile_vs( st ); #if defined(USE_X86_ASM) || defined(SLANG_X86) - vs.executable = (void *) x86_get_func( &vp->sse2_program ); + st->vp->vs.executable = (void *) x86_get_func( &vp->sse2_program ); #endif st->state.vs = st->vp->vs;