Make EGL15 class final

Updates from API review feedback.
Bug: 118296391
Test: manually inspect code

Change-Id: If79f03497e77dfce65909a734bafbb6e08c39155
This commit is contained in:
Courtney Goeltzenleuchter
2018-10-24 09:10:32 -06:00
parent 6e8c60ccc1
commit 986992f2cd
2 changed files with 4 additions and 3 deletions

View File

@@ -29742,8 +29742,7 @@ package android.opengl {
field public static final int EGL_WINDOW_BIT = 4; // 0x4
}
public class EGL15 {
ctor public EGL15();
public final class EGL15 {
method public static int eglClientWaitSync(android.opengl.EGLDisplay, android.opengl.EGLSync, int, long);
method public static android.opengl.EGLImage eglCreateImage(android.opengl.EGLDisplay, android.opengl.EGLContext, int, long, long[], int);
method public static android.opengl.EGLSurface eglCreatePlatformPixmapSurface(android.opengl.EGLDisplay, android.opengl.EGLConfig, java.nio.Buffer, long[], int);

View File

@@ -20,7 +20,9 @@ package android.opengl;
* EGL 1.5
*
*/
public class EGL15 {
public final class EGL15 {
private EGL15() {};
public static final int EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT = 0x00000001;
public static final int EGL_CONTEXT_OPENGL_COMPATIBILITY_PROFILE_BIT = 0x00000002;