diff options
author | Stephane Marchesin <[email protected]> | 2008-10-01 00:00:58 +0200 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2008-10-02 10:19:47 -0400 |
commit | 8bdb4d2b2fdb12d0ba5249c289d349e35d893d00 (patch) | |
tree | 3469b245f859325722b4d7b2ea4cfc9d4a481f01 /src/gallium/auxiliary/gallivm/instructionssoa.h | |
parent | 3f4b67f5d715f53fec618ed0e48615f87ff1cfda (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(); |