diff options
Diffstat (limited to 'src/mesa/pipe/llvm/llvmtgsi.h')
-rw-r--r-- | src/mesa/pipe/llvm/llvmtgsi.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/pipe/llvm/llvmtgsi.h b/src/mesa/pipe/llvm/llvmtgsi.h index 9fbb0ea8f9d..b1b5717f6d0 100644 --- a/src/mesa/pipe/llvm/llvmtgsi.h +++ b/src/mesa/pipe/llvm/llvmtgsi.h @@ -12,6 +12,7 @@ struct tgsi_sampler; struct ga_llvm_prog { void *module; void *engine; + void *function; }; struct ga_llvm_prog * ga_llvm_from_tgsi(const struct tgsi_token *tokens); @@ -22,7 +23,8 @@ int ga_llvm_prog_exec(struct ga_llvm_prog *prog, float (*inputs)[32][4], void *dests[16*32*4], float (*consts)[4], - int count); + int count, + int num_attribs); #if defined __cplusplus } // extern "C" |