summaryrefslogtreecommitdiffstats
path: root/test/com/jogamp/opencl/TestUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/com/jogamp/opencl/TestUtils.java')
-rw-r--r--test/com/jogamp/opencl/TestUtils.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/com/jogamp/opencl/TestUtils.java b/test/com/jogamp/opencl/TestUtils.java
index efe6855e..e7e5fabe 100644
--- a/test/com/jogamp/opencl/TestUtils.java
+++ b/test/com/jogamp/opencl/TestUtils.java
@@ -69,15 +69,6 @@ public class TestUtils {
return buffer;
}
- public static int roundUp(int groupSize, int globalSize) {
- int r = globalSize % groupSize;
- if (r == 0) {
- return globalSize;
- } else {
- return globalSize + groupSize - r;
- }
- }
-
public static void checkIfEqual(ByteBuffer a, ByteBuffer b, int elements) {
for(int i = 0; i < elements; i++) {
int aVal = a.getInt();