summaryrefslogtreecommitdiffstats
path: root/opengl/tools/glgen/stubs/egl/eglGetDisplay.java
diff options
context:
space:
mode:
Diffstat (limited to 'opengl/tools/glgen/stubs/egl/eglGetDisplay.java')
-rwxr-xr-xopengl/tools/glgen/stubs/egl/eglGetDisplay.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/opengl/tools/glgen/stubs/egl/eglGetDisplay.java b/opengl/tools/glgen/stubs/egl/eglGetDisplay.java
new file mode 100755
index 0000000..532eb09
--- /dev/null
+++ b/opengl/tools/glgen/stubs/egl/eglGetDisplay.java
@@ -0,0 +1,14 @@
+ // C function EGLDisplay eglGetDisplay ( EGLNativeDisplayType display_id )
+ // TODO Deprecate the eglGetDisplay(int) API method
+
+ public static native EGLDisplay eglGetDisplay(
+ int display_id
+ );
+ // TODO Unhide the eglGetDisplay(long) API method
+ /**
+ * {@hide}
+ */
+ public static native EGLDisplay eglGetDisplay(
+ long display_id
+ );
+