From: Zack Rusin Date: Mon, 24 Sep 2007 09:43:07 +0000 (-0400) Subject: In here we actually do want to assign it. Fix compilation. X-Git-Tag: 062012170305~17580^2~390^2~4040 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c0afc92f00e5153a168fb6df518b7a2e6b3b9406;p=profile%2Fivi%2Fmesa.git In here we actually do want to assign it. Fix compilation. --- diff --git a/src/mesa/state_tracker/st_atom_vs.c b/src/mesa/state_tracker/st_atom_vs.c index ae51e97..9050f30 100644 --- a/src/mesa/state_tracker/st_atom_vs.c +++ b/src/mesa/state_tracker/st_atom_vs.c @@ -216,7 +216,7 @@ st_translate_vertex_shader(struct st_context *st, tgsi_emit_sse2( stvp->tokens, &stvp->sse2_program ); if (!cso->state.executable) - cso->state.executable = (void *) x86_get_func( &stvp->sse2_program ); + ((struct cso_vertex_shader*)cso)->state.executable = (void *) x86_get_func( &stvp->sse2_program ); #endif stvp->dirty = 0;