summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/cso_cache
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-03-11 14:31:17 -0600
committerBrian <brian.paul@tungstengraphics.com>2008-03-11 14:31:17 -0600
commit30fab81de8ea7bf81181db7bd605f376d4e4fca2 (patch)
treecf072284a3d70e5c40ac5b6fb14bd6969c99c933 /src/gallium/auxiliary/cso_cache
parent5038c20795cb2e49d72c1f43a8b705056592356c (diff)
gallium: fix fs/vs typo in cso_set_vertex_shader()
Diffstat (limited to 'src/gallium/auxiliary/cso_cache')
-rw-r--r--src/gallium/auxiliary/cso_cache/cso_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c
index fbb26ca511..f7f4aebb16 100644
--- a/src/gallium/auxiliary/cso_cache/cso_context.c
+++ b/src/gallium/auxiliary/cso_cache/cso_context.c
@@ -349,6 +349,6 @@ void cso_set_vertex_shader(struct cso_context *ctx,
if (ctx->vertex_shader != handle) {
ctx->vertex_shader = handle;
- ctx->pipe->bind_fs_state(ctx->pipe, handle);
+ ctx->pipe->bind_vs_state(ctx->pipe, handle);
}
}