From: José Fonseca Date: Thu, 25 Apr 2013 13:06:50 +0000 (+0100) Subject: graw: Set the vertex shader constant buffer. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=74d1153c9c3f5f88ad3fa1819d54f5b574b2e37f;p=mesa.git graw: Set the vertex shader constant buffer. We were setting the fragment shader, which wasn't needed. --- diff --git a/src/gallium/tests/graw/vs-test.c b/src/gallium/tests/graw/vs-test.c index 61f6a93c27c..1ab6732bb17 100644 --- a/src/gallium/tests/graw/vs-test.c +++ b/src/gallium/tests/graw/vs-test.c @@ -111,7 +111,7 @@ static void init_fs_constbuf( void ) pipe_set_constant_buffer(ctx, - PIPE_SHADER_FRAGMENT, 0, + PIPE_SHADER_VERTEX, 0, constbuf); }