-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGLFWNativeOSMesa.java
33 lines (25 loc) · 1.87 KB
/
GLFWNativeOSMesa.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package org.lwjgl.glfw;
import org.lwjgl.PointerBuffer;
import org.lwjgl.system.NativeType;
import java.nio.IntBuffer;
import javax.annotation.Nullable;
public class GLFWNativeOSMesa {
@NativeType("int")
public static boolean glfwGetOSMesaColorBuffer(@NativeType("GLFWwindow *") long window, @Nullable @NativeType("int *") IntBuffer width, @Nullable @NativeType("int *") IntBuffer height, @Nullable @NativeType("int *") IntBuffer format, @Nullable @NativeType("void **") PointerBuffer buffer) {
throw new UnsupportedOperationException("Not implemented yet!");
}
public static int glfwGetOSMesaDepthBuffer(@NativeType("GLFWwindow *") long window, @Nullable @NativeType("int *") IntBuffer width, @Nullable @NativeType("int *") IntBuffer height, @Nullable @NativeType("int *") IntBuffer bytesPerValue, @Nullable @NativeType("void **") PointerBuffer buffer) {
throw new UnsupportedOperationException("Not implemented yet!");
}
@NativeType("OSMesaContext")
public static long glfwGetOSMesaContext(@NativeType("GLFWwindow *") long window) {
throw new UnsupportedOperationException("Not implemented yet!");
}
@NativeType("int")
public static boolean glfwGetOSMesaColorBuffer(@NativeType("GLFWwindow *") long window, @Nullable @NativeType("int *") int[] width, @Nullable @NativeType("int *") int[] height, @Nullable @NativeType("int *") int[] format, @Nullable @NativeType("void **") PointerBuffer buffer) {
throw new UnsupportedOperationException("Not implemented yet!");
}
public static int glfwGetOSMesaDepthBuffer(@NativeType("GLFWwindow *") long window, @Nullable @NativeType("int *") int[] width, @Nullable @NativeType("int *") int[] height, @Nullable @NativeType("int *") int[] bytesPerValue, @Nullable @NativeType("void **") PointerBuffer buffer) {
throw new UnsupportedOperationException("Not implemented yet!");
}
}