python: Update for renamed sampler/texture state setters.

This commit is contained in:
Michal Krol
2009-12-01 08:47:00 +01:00
parent e197652ce0
commit ee86b1b58d
2 changed files with 5 additions and 5 deletions
@@ -147,9 +147,9 @@ struct st_context {
if(!texture)
texture = $self->default_texture;
pipe_texture_reference(&$self->sampler_textures[index], texture);
$self->pipe->set_sampler_textures($self->pipe,
PIPE_MAX_SAMPLERS,
$self->sampler_textures);
$self->pipe->set_fragment_sampler_textures($self->pipe,
PIPE_MAX_SAMPLERS,
$self->sampler_textures);
}
void set_vertex_buffer(unsigned index,
@@ -388,7 +388,7 @@ class Context(Object):
def delete_sampler_state(self, state):
pass
def bind_sampler_states(self, num_states, states):
def bind_fragment_sampler_states(self, num_states, states):
for i in range(num_states):
self.real.set_sampler(i, states[i])
@@ -486,7 +486,7 @@ class Context(Object):
def set_viewport_state(self, state):
self.real.set_viewport(state)
def set_sampler_textures(self, num_textures, textures):
def set_fragment_sampler_textures(self, num_textures, textures):
for i in range(num_textures):
self.real.set_sampler_texture(i, textures[i])