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

Commit 3569a007 authored by Romain Guy's avatar Romain Guy
Browse files

Deprecate eglCreatePixmapSurface

This function was never properly supported. It had partial support in our JNI
layer in EGL10 but not implementation in EGL14. It has never been tested and
it is unlikely that drivers support pixmap rendering.

Bug: 11257511
Test: CtsGraphicsTestCases
Change-Id: Ieb9a98fd94ac04219e7bf81ee5d31354bd591f39
parent 7eb9c3a4
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
    // C function EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )

    @Deprecated
    public static native EGLSurface eglCreatePixmapSurface(
        EGLDisplay dpy,
        EGLConfig config,
        int pixmap,
        int[] attrib_list,
        int offset
    );
 No newline at end of file