diff options
author | Brian <[email protected]> | 2008-02-12 16:10:11 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2008-02-12 16:10:11 -0700 |
commit | 9677336845511be4852520d2e50f91f1df362f58 (patch) | |
tree | 08bbbb66729e1309fa3d201cfcb4526ee272190e /src/mesa/state_tracker/st_cb_drawpixels.c | |
parent | 6d53b8f42349c507e7184aa567a4b2a4fc7b037f (diff) |
gallium: rename st_fragment_program's fs field to cso to match st_vertex_program
Diffstat (limited to 'src/mesa/state_tracker/st_cb_drawpixels.c')
-rw-r--r-- | src/mesa/state_tracker/st_cb_drawpixels.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_drawpixels.c b/src/mesa/state_tracker/st_cb_drawpixels.c index 475e23653e8..3245a7488bc 100644 --- a/src/mesa/state_tracker/st_cb_drawpixels.c +++ b/src/mesa/state_tracker/st_cb_drawpixels.c @@ -665,7 +665,7 @@ draw_textured_quad(GLcontext *ctx, GLint x, GLint y, GLfloat z, } /* fragment shader state: TEX lookup program */ - pipe->bind_fs_state(pipe, stfp->fs->data); + pipe->bind_fs_state(pipe, stfp->cso->data); /* vertex shader state: position + texcoord pass-through */ pipe->bind_vs_state(pipe, stvp->cso->data); |