gallium/tools: update dump_state.py to use bind_sampler_states()

This commit is contained in:
Brian Paul
2013-09-12 18:11:45 -06:00
parent 3f0627c2ad
commit bc367ab54d
+3 -8
View File
@@ -239,6 +239,7 @@ class Context(Dispatcher):
self._state.vs.shader = None
self._state.gs.shader = None
self._state.fs.shader = None
self._state.sampler = {}
self._state.vs.sampler = []
self._state.gs.sampler = []
self._state.fs.sampler = []
@@ -280,14 +281,8 @@ class Context(Dispatcher):
def delete_sampler_state(self, state):
pass
def bind_vertex_sampler_states(self, num_states, states):
self._state.vs.sampler = states
def bind_geometry_sampler_states(self, num_states, states):
self._state.gs.sampler = states
def bind_fragment_sampler_states(self, num_states, states):
self._state.fs.sampler = states
def bind_sampler_states(self, shader, start, num_states, states):
self._state.sampler[shader] = states
def create_rasterizer_state(self, state):
return state