Skip to content

Commit

Permalink
modification due to method renaming in gluegen/ProcAddressTable.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbien committed Apr 24, 2010
1 parent 7543640 commit 7674ff2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/com/jogamp/opencl/CLPlatform.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import com.jogamp.opencl.util.CLUtil;
import com.jogamp.opencl.impl.CLImpl;
import com.jogamp.opencl.impl.CLProcAddressTable;
import com.jogamp.gluegen.runtime.ProcAddressHelper;

import java.nio.ByteBuffer;
import java.nio.ByteOrder;
Expand Down Expand Up @@ -43,7 +42,7 @@ public final class CLPlatform {
NativeLibrary lib = JOCLJNILibLoader.loadJOCL();

CLProcAddressTable table = new CLProcAddressTable();
ProcAddressHelper.resetProcAddressTable(table, lib);
table.reset(lib);

cl = new CLImpl(table);
}catch(Exception ex) {
Expand Down

0 comments on commit 7674ff2

Please sign in to comment.