diff options
author | Zack Rusin <[email protected]> | 2010-04-02 18:52:32 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2010-04-02 18:52:32 -0400 |
commit | cb31d3b5fec6260142ed27cc37f7155915ecfe89 (patch) | |
tree | e4aa841129354044f46950b86e0bec372e983fb4 /src/gallium/auxiliary/draw/draw_llvm.h | |
parent | 557b75248a3ebc6daabe3c2b69ac24d409aaa1e0 (diff) |
draw llvm: fix storing of outputs for the rest of the pipeline
there's no good way of aligning the output's, and since the vertex_header
is variable sized in the first place we need to extract elements from a vector
and store them individually into an array. this gets the basic examples working
again
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_llvm.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_llvm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_llvm.h b/src/gallium/auxiliary/draw/draw_llvm.h index 46ce236e3cd..afafa15e687 100644 --- a/src/gallium/auxiliary/draw/draw_llvm.h +++ b/src/gallium/auxiliary/draw/draw_llvm.h @@ -157,7 +157,7 @@ void draw_llvm_destroy(struct draw_llvm *llvm); void -draw_llvm_prepare(struct draw_llvm *llvm); +draw_llvm_prepare(struct draw_llvm *llvm, int num_inputs); /* generates the draw jit function */ void |