diff options
author | Brian Paul <[email protected]> | 2013-09-12 15:40:13 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-10-03 14:05:27 -0600 |
commit | a5350a9f3efc0cf45ecb27cba8deedf9488f073b (patch) | |
tree | 5591d7ae03b0be9cd8b5b683cd9a92eab81c202d /src/gallium/tests/graw/tex-swizzle.c | |
parent | bc367ab54d8c18b06fbbb3838a0d19240c1afe9b (diff) |
gallium/tests: use pipe_context::bind_sampler_states()
Diffstat (limited to 'src/gallium/tests/graw/tex-swizzle.c')
-rw-r--r-- | src/gallium/tests/graw/tex-swizzle.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/tests/graw/tex-swizzle.c b/src/gallium/tests/graw/tex-swizzle.c index 4ee79ee7a24..65c1d4dde5e 100644 --- a/src/gallium/tests/graw/tex-swizzle.c +++ b/src/gallium/tests/graw/tex-swizzle.c @@ -152,7 +152,8 @@ init_tex(const unsigned swizzle[4]) PIPE_TEX_WRAP_REPEAT, PIPE_TEX_FILTER_NEAREST); - info.ctx->bind_fragment_sampler_states(info.ctx, 1, &sampler); + info.ctx->bind_sampler_states(info.ctx, PIPE_SHADER_FRAGMENT, + 0, 1, &sampler); #undef SIZE } |