projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bcec03d
)
r600g: fix typo in vertex sampling on r600
author
Dave Airlie
<airlied@redhat.com>
Mon, 11 Oct 2010 23:41:02 +0000
(09:41 +1000)
committer
Dave Airlie
<airlied@redhat.com>
Mon, 11 Oct 2010 23:45:22 +0000
(09:45 +1000)
fixes https://bugs.freedesktop.org/show_bug.cgi?id=30771
Reported-by: Kevin DeKorte
src/gallium/drivers/r600/r600_state.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/r600/r600_state.c
b/src/gallium/drivers/r600/r600_state.c
index a2a76cdeb7577b9db050c0f34ffc2241c7f891cf..70461d24ea2badb8a62dd9f1b7816279ed82a3ad 100644
(file)
--- a/
src/gallium/drivers/r600/r600_state.c
+++ b/
src/gallium/drivers/r600/r600_state.c
@@
-688,7
+688,7
@@
static void r600_set_vs_sampler_view(struct pipe_context *ctx, unsigned count,
for (int i = 0; i < count; i++) {
if (resource[i]) {
- r600_context_pipe_state_set_
p
s_resource(&rctx->ctx, &resource[i]->state, i + PIPE_MAX_ATTRIBS);
+ r600_context_pipe_state_set_
v
s_resource(&rctx->ctx, &resource[i]->state, i + PIPE_MAX_ATTRIBS);
}
}
}