From: Brian Date: Tue, 11 Mar 2008 20:31:17 +0000 (-0600) Subject: gallium: fix fs/vs typo in cso_set_vertex_shader() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=30fab81de8ea7bf81181db7bd605f376d4e4fca2;p=mesa.git gallium: fix fs/vs typo in cso_set_vertex_shader() --- diff --git a/src/gallium/auxiliary/cso_cache/cso_context.c b/src/gallium/auxiliary/cso_cache/cso_context.c index fbb26ca511e..f7f4aebb161 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); } }