diff options
| author | Keith Whitwell <keithw@vmware.com> | 2009-07-20 19:29:22 +0100 | 
|---|---|---|
| committer | Keith Whitwell <keithw@vmware.com> | 2009-07-20 19:32:28 +0100 | 
| commit | 442101dad72373bcbd576bce3cbf77c49280e04b (patch) | |
| tree | a41b5328764f8ad4031c51762282b77f9d961761 | |
| parent | 27a19be8d1c59c64240198261af348b868b101e4 (diff) | |
tgsi: get texturing working in vertex shader sse2 path
| -rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_sse2.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/src/gallium/auxiliary/tgsi/tgsi_sse2.c b/src/gallium/auxiliary/tgsi/tgsi_sse2.c index a4b86aba98..4c3343d26c 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_sse2.c +++ b/src/gallium/auxiliary/tgsi/tgsi_sse2.c @@ -2910,14 +2910,14 @@ tgsi_emit_sse2(  	 func,  	 get_coef_base(),  	 x86_fn_arg( func, 4 ) ); - -      x86_mov( -	 func, -	 get_sampler_base(), -	 x86_make_disp( get_machine_base(), -                        Offset( struct tgsi_exec_machine, Samplers ) ) );     } +   x86_mov( +      func, +      get_sampler_base(), +      x86_make_disp( get_machine_base(), +                     Offset( struct tgsi_exec_machine, Samplers ) ) ); +     while( !tgsi_parse_end_of_tokens( &parse ) && ok ) {        tgsi_parse_token( &parse ); | 
