From 1b2f56e62e494b57cbd3fb39ae6514da5b3389e0 Mon Sep 17 00:00:00 2001 From: Lionel Ulmer Date: Wed, 30 Jul 2003 03:40:39 +0000 Subject: [PATCH] Fixed the TEXCOORDINDEX code. --- dlls/ddraw/d3ddevice/mesa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/ddraw/d3ddevice/mesa.c b/dlls/ddraw/d3ddevice/mesa.c index 2645928073b..1b1c186a301 100644 --- a/dlls/ddraw/d3ddevice/mesa.c +++ b/dlls/ddraw/d3ddevice/mesa.c @@ -1197,9 +1197,9 @@ inline static void handle_diffuse_and_specular(STATEBLOCK *sb, BYTE *fog_table, inline static void handle_texture(D3DVALUE *coords) { glTexCoord2fv(coords); } -inline static void handle_textures(D3DVALUE *coords, int tex_index) { +inline static void handle_textures(D3DVALUE *coords, int tex_stage) { /* For the moment, draw only the first texture.. */ - if (tex_index == 0) glTexCoord2fv(coords); + if (tex_stage == 0) glTexCoord2fv(coords); } static void draw_primitive_strided(IDirect3DDeviceImpl *This, @@ -1335,7 +1335,7 @@ static void draw_primitive_strided(IDirect3DDeviceImpl *This, } for (tex_stage = 0; tex_stage < num_active_stages; tex_stage++) { - int tex_index = This->state_block.texture_stage_state[tex_stage][D3DTSS_TEXCOORDINDEX - 1] & 0xFFFF0000; + int tex_index = This->state_block.texture_stage_state[tex_stage][D3DTSS_TEXCOORDINDEX - 1] & 0x0000FFFF; if (tex_index >= num_tex_index) { handle_textures((D3DVALUE *) no_index, tex_stage); } else {