diff options
author | Igor Oliveira <igor.oliveira@openbossa.org> | 2010-01-25 09:53:53 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-01-25 09:53:53 -0700 |
commit | 0d051af6127d206d165a1034ca0795ce8fdcd389 (patch) | |
tree | 6aa8d1d6288383af61e40329421a3588d4df3e2c /src | |
parent | 6877c5de3c3ff39da514a74928ea270138cddff9 (diff) |
vega: fix incorrect samplers, textures indexes in blend_bind_samplers()
Fixes fd.o bug 25863.
Signed-off-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/state_trackers/vega/shader.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/vega/shader.c b/src/gallium/state_trackers/vega/shader.c index d9074a377b..91909da2c0 100644 --- a/src/gallium/state_trackers/vega/shader.c +++ b/src/gallium/state_trackers/vega/shader.c @@ -135,8 +135,8 @@ static VGint blend_bind_samplers(struct vg_context *ctx, textures[2] = stfb->blend_texture; if (!samplers[0] || !textures[0]) { - samplers[1] = samplers[2]; - textures[1] = textures[2]; + samplers[0] = samplers[2]; + textures[0] = textures[2]; } if (!samplers[1] || !textures[1]) { samplers[1] = samplers[0]; |