diff options
author | Zack Rusin <[email protected]> | 2008-02-11 09:43:59 -0500 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2008-02-11 09:43:59 -0500 |
commit | e761161d014cde4e0a6e52631e9e4bc740b554f6 (patch) | |
tree | 6477ba9f3e5506d71965126273adfd6dc583c696 /src/mesa/pipe/llvm/gallivm.h | |
parent | 1712a5380a12fe66fa03a281394abeca034f1a7c (diff) |
start genering soa type code in llvm paths
Diffstat (limited to 'src/mesa/pipe/llvm/gallivm.h')
-rw-r--r-- | src/mesa/pipe/llvm/gallivm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/pipe/llvm/gallivm.h b/src/mesa/pipe/llvm/gallivm.h index 98eda56f81c..b104520cb7f 100644 --- a/src/mesa/pipe/llvm/gallivm.h +++ b/src/mesa/pipe/llvm/gallivm.h @@ -61,12 +61,12 @@ enum gallivm_vector_layout { }; struct gallivm_ir *gallivm_ir_new(enum gallivm_shader_type type); -void gallivm_ir_set_layout(struct gallivm_ir *prog, +void gallivm_ir_set_layout(struct gallivm_ir *ir, enum gallivm_vector_layout layout); -void gallivm_ir_set_components(struct gallivm_ir *prog, int num); -void gallivm_ir_fill_from_tgsi(struct gallivm_ir *prog, +void gallivm_ir_set_components(struct gallivm_ir *ir, int num); +void gallivm_ir_fill_from_tgsi(struct gallivm_ir *ir, const struct tgsi_token *tokens); -void gallivm_ir_delete(struct gallivm_ir *prog); +void gallivm_ir_delete(struct gallivm_ir *ir); struct gallivm_prog *gallivm_ir_compile(struct gallivm_ir *ir); |