diff options
author | Michal Krol <[email protected]> | 2009-12-01 08:44:18 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-01 09:52:27 +0100 |
commit | e197652ce08cacf0fdbf0509db5eb26500d556c5 (patch) | |
tree | dff3d03c8f4c205ebed5ed857e0c11ab9ef10e1b /src/mesa/state_tracker | |
parent | eeb8dd12b48c6ad3f466cf0ea88472fca576ebd4 (diff) |
st: Update for renamed sampler/texture state setters.
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_cb_drawpixels.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_cb_drawpixels.c b/src/mesa/state_tracker/st_cb_drawpixels.c index a68a29e126e..03617b7a939 100644 --- a/src/mesa/state_tracker/st_cb_drawpixels.c +++ b/src/mesa/state_tracker/st_cb_drawpixels.c @@ -585,10 +585,10 @@ draw_textured_quad(GLcontext *ctx, GLint x, GLint y, GLfloat z, struct pipe_texture *textures[2]; textures[0] = pt; textures[1] = st->pixel_xfer.pixelmap_texture; - pipe->set_sampler_textures(pipe, 2, textures); + pipe->set_fragment_sampler_textures(pipe, 2, textures); } else { - pipe->set_sampler_textures(pipe, 1, &pt); + pipe->set_fragment_sampler_textures(pipe, 1, &pt); } /* Compute window coords (y=0=bottom) with pixel zoom. |