Skip to content

Commit bafeec3

Browse files
committed
feat: remove symbol lookups in OverrunGLConfigurations
1 parent 18f6693 commit bafeec3

1 file changed

Lines changed: 0 additions & 37 deletions

File tree

modules/overrungl.core/src/main/java/overrungl/OverrunGLConfigurations.java

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616

1717
package overrungl;
1818

19-
import java.lang.foreign.SymbolLookup;
20-
import java.util.function.Function;
2119
import java.util.function.Supplier;
2220

2321
/// The configurations for OverrunGL.
@@ -42,41 +40,6 @@ public final class OverrunGLConfigurations {
4240
*/
4341
public static final Entry<Integer> STACK_FRAME_COUNT = new Entry<>(() -> 8);
4442

45-
/**
46-
* The symbol lookup of GLFW.
47-
* The returned value must not be null.
48-
* <p>
49-
* The default value is {@code null}.
50-
*/
51-
@Deprecated
52-
public static final Entry<Function<Supplier<SymbolLookup>, SymbolLookup>> GLFW_SYMBOL_LOOKUP = new Entry<>(() -> null);
53-
/**
54-
* The symbol lookup of NFD.
55-
* The returned value must not be null.
56-
* <p>
57-
* The default value is {@code null}.
58-
*/
59-
@Deprecated
60-
public static final Entry<Function<Supplier<SymbolLookup>, SymbolLookup>> NFD_SYMBOL_LOOKUP = new Entry<>(() -> null);
61-
/// The symbol lookup of OpenAL. The returned value must not be null.
62-
///
63-
/// The default value is `null`.
64-
@Deprecated
65-
public static final Entry<Function<Supplier<SymbolLookup>, SymbolLookup>> OPENAL_SYMBOL_LOOKUP = new Entry<>(() -> null);
66-
/**
67-
* The symbol lookup of stb.
68-
* The returned value must not be null.
69-
* <p>
70-
* The default value is {@code null}.
71-
*/
72-
@Deprecated
73-
public static final Entry<Function<Supplier<SymbolLookup>, SymbolLookup>> STB_SYMBOL_LOOKUP = new Entry<>(() -> null);
74-
/// The symbol lookup of Vulkan Memory Allocator. The returned value must not be null.
75-
///
76-
/// The default value is `null`.
77-
@Deprecated
78-
public static final Entry<Function<Supplier<SymbolLookup>, SymbolLookup>> VMA_SYMBOL_LOOKUP = new Entry<>(() -> null);
79-
8043
private OverrunGLConfigurations() {
8144
//no instance
8245
}

0 commit comments

Comments
 (0)