summaryrefslogtreecommitdiff
path: root/src/mesa/shader/slang/library/slang_core.gc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/shader/slang/library/slang_core.gc')
-rw-r--r--src/mesa/shader/slang/library/slang_core.gc19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/mesa/shader/slang/library/slang_core.gc b/src/mesa/shader/slang/library/slang_core.gc
index 407c613ab5..811568c7ba 100644
--- a/src/mesa/shader/slang/library/slang_core.gc
+++ b/src/mesa/shader/slang/library/slang_core.gc
@@ -2470,11 +2470,6 @@ bool __operator <= (const int a, const int b) {
}
-//bool __operator ^^ (const bool a, const bool b) {
-// return a != b;
-//}
-
-
bool __logicalNot(const bool a)
{
@@ -2483,20 +2478,6 @@ bool __logicalNot(const bool a)
return true;
}
-bool __logicalAnd(const bool a, const bool b)
-{
- if (a)
- return b;
- return false;
-}
-
-bool __logicalOr(const bool a, const bool b)
-{
- if (a)
- return true;
- return b;
-}
-
bool __logicalXor(const bool a, const bool b)
{
// XXX return a != b;