From dc1424050e47cd239ad26c4f12fb3a0e4289d682 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Fri, 16 Jun 2023 03:17:28 +0200 Subject: Adopt to GlueGen change: Drop ManualStaticInitCall, PointerBuffer.ELEMENT_SIZE -> AbstractBuffer.POINTER_SIZE --- src/com/jogamp/opencl/CLProgram.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/com/jogamp/opencl/CLProgram.java') diff --git a/src/com/jogamp/opencl/CLProgram.java b/src/com/jogamp/opencl/CLProgram.java index 3c68fa35..401c547a 100644 --- a/src/com/jogamp/opencl/CLProgram.java +++ b/src/com/jogamp/opencl/CLProgram.java @@ -28,6 +28,7 @@ package com.jogamp.opencl; +import com.jogamp.common.nio.AbstractBuffer; import com.jogamp.common.nio.CachedBufferFactory; import com.jogamp.opencl.util.CLProgramConfiguration; import com.jogamp.opencl.util.CLUtil; @@ -109,7 +110,7 @@ public class CLProgram extends CLObjectResource { binarySize += entry.getValue().length; } - final int pbSize = PointerBuffer.ELEMENT_SIZE; + final int pbSize = AbstractBuffer.POINTER_SIZE; final int deviceCount = binaries.size(); final CachedBufferFactory bf = CachedBufferFactory.create(binarySize + pbSize*deviceCount*3 + 4, true); @@ -373,7 +374,7 @@ public class CLProgram extends CLObjectResource { { try { buildLock.acquire(); - } catch(InterruptedException e) { + } catch(final InterruptedException e) { throw newException(ret, "\nInterrupted while waiting to get build lock"); } -- cgit v1.2.3