Skip to content

Commit

Permalink
removed DriftGL load calls
Browse files Browse the repository at this point in the history
  • Loading branch information
redrezo committed Jul 24, 2020
1 parent 2479326 commit 777fef9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
public class GL {

static {
NativeLoader.loadLibrary(GL.class, "DriftGL");
//NativeLoader.loadLibrary(GL.class, "DriftGL");
NativeLoader.loadLibrary(GL.class, "driftfx");
if (!initialize()) {
// TODO throw exception in native code ?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public static void output(IMemoryStack stack, Long t) {
nOutputLong(t.getAddress());
}
public static void main(String[] args) {
NativeLoader.loadLibrary(MemoryStack.class, "DriftGL");
//NativeLoader.loadLibrary(MemoryStack.class, "DriftGL");
NativeLoader.loadLibrary(MemoryStack.class, "driftfx");
MemoryStack stack = new MemoryStack();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public class Win32Tests {

public static void main(String[] args) throws WindowsError {
NativeLoader.loadLibrary(Win32Tests.class, "DriftGL");
//NativeLoader.loadLibrary(Win32Tests.class, "DriftGL");
NativeLoader.loadLibrary(Win32Tests.class, "driftfx");

IDirect3DDevice9Ex device = D3D9.CreateOffscreenDevice();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public class Prism {

static {
NativeLoader.loadLibrary(Prism.class, "DriftGL");
//NativeLoader.loadLibrary(Prism.class, "DriftGL");
NativeLoader.loadLibrary(Prism.class, "driftfx");
}

Expand Down

0 comments on commit 777fef9

Please sign in to comment.