summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWade Walker <[email protected]>2014-04-06 15:05:46 -0500
committerWade Walker <[email protected]>2014-04-06 15:05:46 -0500
commitf98767152049ac141e115dcbb6a6ac66f4831d6a (patch)
treee41c7dfd1ba0e11f230c25f843b59d444af69dd3 /src
parent00f4325c5a46bf7c46be8646c1eb6f53b632f30a (diff)
Fix CL-GL interoperability tests on Mac.
Fixed detection of compatible interoperability platforms (was silently skipping platform because GL vendor was Nvidia, but CL vendor was Apple). Also fixed CL kernel syntax error about signed-unsigned comparison that ATI's driver on Windows didn't find, and fixed the CL memory object to be write-only instead of read-only (which ATI's Windows driver just ignored).
Diffstat (limited to 'src')
-rw-r--r--src/com/jogamp/opencl/util/CLPlatformFilters.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/com/jogamp/opencl/util/CLPlatformFilters.java b/src/com/jogamp/opencl/util/CLPlatformFilters.java
index 14e1507e..451c6b1f 100644
--- a/src/com/jogamp/opencl/util/CLPlatformFilters.java
+++ b/src/com/jogamp/opencl/util/CLPlatformFilters.java
@@ -100,15 +100,17 @@ public class CLPlatformFilters {
}
/**
- * We need this test because on at least some AMD cards, the GL vendor is ATI,
- * but the CL vendor is AMD.
+ * We need this test because:
+ * - On at least some AMD cards, the GL vendor is ATI, but the CL vendor is AMD.
+ * - On at least some Macs, the GL vendor is Nvidia, but the CL vendor is Apple.
* @param glVendor OpenGL vendor string.
* @param clVendor OpenCL vendor string.
* @return true if the strings are either the same, or indicate that they're part of the same card.
*/
private static boolean areVendorsCompatible(final String glVendor, final String clVendor) {
return( clVendor.equals(glVendor)
- || (glVendor.contains("ATI Technologies") && clVendor.contains("Advanced Micro Devices")));
+ || (glVendor.contains("ATI Technologies") && clVendor.contains("Advanced Micro Devices"))
+ || (glVendor.contains("NVIDIA Corporation") && clVendor.contains("Apple")));
}
/**