diff options
author | Michal Krol <[email protected]> | 2010-01-19 13:20:15 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2010-01-28 14:07:29 +0100 |
commit | 835bab0143e11ab98551a061043f944fd6eab456 (patch) | |
tree | b9990efa6c4efe19c1cddec85ea57d5ecaab1d97 /src/gallium/auxiliary/draw/draw_gs.c | |
parent | 4367de152cc5bd7240d75a33e75c1b1671b5cc16 (diff) |
gallium: Implement 2D constant buffers for fragment shader in softpipe.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_gs.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_gs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_gs.c b/src/gallium/auxiliary/draw/draw_gs.c index daf8d071f12..c3cc365a8d9 100644 --- a/src/gallium/auxiliary/draw/draw_gs.c +++ b/src/gallium/auxiliary/draw/draw_gs.c @@ -302,7 +302,7 @@ void draw_geometry_shader_run(struct draw_geometry_shader *shader, unsigned num_primitives = count/num_vertices; unsigned inputs_from_vs = 0; - machine->Consts = constants; + machine->Consts[0] = constants; for (i = 0; i < shader->info.num_inputs; ++i) { if (shader->info.input_semantic_name[i] != TGSI_SEMANTIC_PRIMID) |