r300g: Fix fragment program constants upload on R300
authorNicolai Hähnle <nhaehnle@gmail.com>
Sun, 11 Oct 2009 10:40:07 +0000 (12:40 +0200)
committerNicolai Hähnle <nhaehnle@gmail.com>
Sun, 11 Oct 2009 10:41:18 +0000 (12:41 +0200)
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com>
src/gallium/drivers/r300/r300_emit.c

index 77ce431..570b4c5 100644 (file)
@@ -212,7 +212,7 @@ void r300_emit_fragment_program_code(struct r300_context* r300,
     }
 
     if (constants->Count) {
-        OUT_CS_ONE_REG(R300_PFS_PARAM_0_X, constants->Count * 4);
+        OUT_CS_REG_SEQ(R300_PFS_PARAM_0_X, constants->Count * 4);
         for(i = 0; i < constants->Count; ++i) {
             const float * data = get_shader_constant(r300, &constants->Constants[i], externals);
             OUT_CS(pack_float24(data[0]));