diff options
author | Stephane Marchesin <[email protected]> | 2008-10-01 00:00:58 +0200 |
---|---|---|
committer | Stephane Marchesin <[email protected]> | 2008-10-01 00:00:58 +0200 |
commit | a6ff215777da2181d7099284f2da28eff78273a9 (patch) | |
tree | a7427b5cb0b9a446815dcc8cd286647df0567229 /src/gallium/auxiliary/gallivm/instructionssoa.h | |
parent | 4ae161e9409f8b5d73306bbf382c7b27d5038ab3 (diff) |
Gallivm: add slt. glxgears should be running, except it isn't.
Diffstat (limited to 'src/gallium/auxiliary/gallivm/instructionssoa.h')
-rw-r--r-- | src/gallium/auxiliary/gallivm/instructionssoa.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/gallivm/instructionssoa.h b/src/gallium/auxiliary/gallivm/instructionssoa.h index 20cab3b3bbd..3817fdc904b 100644 --- a/src/gallium/auxiliary/gallivm/instructionssoa.h +++ b/src/gallium/auxiliary/gallivm/instructionssoa.h @@ -69,6 +69,8 @@ public: std::vector<llvm::Value*> pow(const std::vector<llvm::Value*> in1, const std::vector<llvm::Value*> in2); std::vector<llvm::Value*> rsq(const std::vector<llvm::Value*> in1); + std::vector<llvm::Value*> slt(const std::vector<llvm::Value*> in1, + const std::vector<llvm::Value*> in2); std::vector<llvm::Value*> sub(const std::vector<llvm::Value*> in1, const std::vector<llvm::Value*> in2); void end(); |