diff options
author | Michal Krol <[email protected]> | 2009-12-01 08:40:31 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-01 09:52:20 +0100 |
commit | c1bcedc4ce48031c9e5d2a2430d27c7a9aaa8b37 (patch) | |
tree | 726045be0b59f2eb8203ebf08249ecacb861a2a7 /src/gallium | |
parent | d15bb1cba3fd2d36c48e33e14cc3c548cf40d555 (diff) |
r300: Update for renamed sampler/texture state setters.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/r300/r300_state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c index a88d66db247..7505353953f 100644 --- a/src/gallium/drivers/r300/r300_state.c +++ b/src/gallium/drivers/r300/r300_state.c @@ -822,10 +822,10 @@ void r300_init_state_functions(struct r300_context* r300) r300->context.delete_rasterizer_state = r300_delete_rs_state; r300->context.create_sampler_state = r300_create_sampler_state; - r300->context.bind_sampler_states = r300_bind_sampler_states; + r300->context.bind_fragment_sampler_states = r300_bind_sampler_states; r300->context.delete_sampler_state = r300_delete_sampler_state; - r300->context.set_sampler_textures = r300_set_sampler_textures; + r300->context.set_fragment_sampler_textures = r300_set_sampler_textures; r300->context.set_scissor_state = r300_set_scissor_state; |