From: José Fonseca Date: Thu, 25 Apr 2013 13:06:50 +0000 (+0100) Subject: graw: Set the vertex shader constant buffer. X-Git-Tag: mesa-9.2.1~1575 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F03%2F6203%2F1;p=platform%2Fupstream%2Fmesa.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 61f6a93..1ab6732 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); }