diff options
author | Zack Rusin <[email protected]> | 2007-10-17 13:34:25 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2007-10-24 11:21:04 -0400 |
commit | 7abe3364b2c463fd3e96c2bc9d07aaa91bcfbc2c (patch) | |
tree | b12db4c361215d69e3afb5094c8c3fa1c5ed3f60 /src/mesa/pipe/llvm/instructions.h | |
parent | e20294be114c2593035afaf6fe0726e0ce628ed0 (diff) |
Implement dot4 opcode
Diffstat (limited to 'src/mesa/pipe/llvm/instructions.h')
-rw-r--r-- | src/mesa/pipe/llvm/instructions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/pipe/llvm/instructions.h b/src/mesa/pipe/llvm/instructions.h index 18b5f91131e..c35cdb75f01 100644 --- a/src/mesa/pipe/llvm/instructions.h +++ b/src/mesa/pipe/llvm/instructions.h @@ -16,6 +16,7 @@ public: llvm::Value *add(llvm::Value *in1, llvm::Value *in2); llvm::Value *dp3(llvm::Value *in1, llvm::Value *in2); + llvm::Value *dp4(llvm::Value *in1, llvm::Value *in2); llvm::Value *lit(llvm::Value *in1); llvm::Value *madd(llvm::Value *in1, llvm::Value *in2, llvm::Value *in2); |