diff options
author | Zack Rusin <zackr@vmware.com> | 2009-12-07 18:13:57 -0500 |
---|---|---|
committer | Zack Rusin <zackr@vmware.com> | 2009-12-07 18:13:57 -0500 |
commit | 45412c2343a3ed1de388aca6a5ae25c49918c9bc (patch) | |
tree | 44303c67e10949cad86ed1bf1fe818c397288e7b /src/gallium/drivers/llvmpipe/lp_state_sampler.c | |
parent | 9b5f260756356a73984d60c907c525b8a2f8cf94 (diff) | |
parent | cad14c2542698de144bb5434cefa02d7a00aaa74 (diff) |
Merge remote branch 'origin/master' into arb_geometry_shader4arb_geometry_shader4
Conflicts:
src/gallium/auxiliary/tgsi/tgsi_exec.c
src/mesa/glapi/glapitemp.h
src/mesa/glapi/glprocs.h
src/mesa/main/enums.c
src/mesa/main/remap_helper.h
src/mesa/state_tracker/st_atom_shader.c
src/mesa/state_tracker/st_program.c
src/mesa/state_tracker/st_program.h
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_state_sampler.c')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state_sampler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_sampler.c b/src/gallium/drivers/llvmpipe/lp_state_sampler.c index c69d90c723..8333805a3f 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_sampler.c +++ b/src/gallium/drivers/llvmpipe/lp_state_sampler.c @@ -102,8 +102,8 @@ llvmpipe_set_sampler_textures(struct pipe_context *pipe, if(tex) { struct llvmpipe_texture *lp_tex = llvmpipe_texture(tex); struct lp_jit_texture *jit_tex = &llvmpipe->jit_context.textures[i]; - jit_tex->width = tex->width[0]; - jit_tex->height = tex->height[0]; + jit_tex->width = tex->width0; + jit_tex->height = tex->height0; jit_tex->stride = lp_tex->stride[0]; if(!lp_tex->dt) jit_tex->data = lp_tex->data; |