Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d4932537 authored by Courtney Goeltzenleuchter's avatar Courtney Goeltzenleuchter Committed by Android (Google) Code Review
Browse files

Merge "Make EGL15 class final"

parents 7fa407f7 986992f2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -29753,8 +29753,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);
+3 −1
Original line number Diff line number Diff line
@@ -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;