Search in sources :

Example 31 with EGLSurface

use of javax.microedition.khronos.egl.EGLSurface in project android_frameworks_base by DirtyUnicorns.

the class EGLLogWrapper method eglCreatePbufferSurface.

public EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) {
    begin("eglCreatePbufferSurface");
    arg("display", display);
    arg("config", config);
    arg("attrib_list", attrib_list);
    end();
    EGLSurface result = mEgl10.eglCreatePbufferSurface(display, config, attrib_list);
    returns(result);
    checkError();
    return result;
}
Also used : EGLSurface(javax.microedition.khronos.egl.EGLSurface)

Example 32 with EGLSurface

use of javax.microedition.khronos.egl.EGLSurface in project android_frameworks_base by DirtyUnicorns.

the class EGLLogWrapper method eglGetCurrentSurface.

public EGLSurface eglGetCurrentSurface(int readdraw) {
    begin("eglGetCurrentSurface");
    arg("readdraw", readdraw);
    end();
    EGLSurface result = mEgl10.eglGetCurrentSurface(readdraw);
    returns(result);
    checkError();
    return result;
}
Also used : EGLSurface(javax.microedition.khronos.egl.EGLSurface)

Example 33 with EGLSurface

use of javax.microedition.khronos.egl.EGLSurface in project android_frameworks_base by DirtyUnicorns.

the class EGLLogWrapper method eglCreatePixmapSurface.

public EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) {
    begin("eglCreatePixmapSurface");
    arg("display", display);
    arg("config", config);
    arg("native_pixmap", native_pixmap);
    arg("attrib_list", attrib_list);
    end();
    EGLSurface result = mEgl10.eglCreatePixmapSurface(display, config, native_pixmap, attrib_list);
    returns(result);
    checkError();
    return result;
}
Also used : EGLSurface(javax.microedition.khronos.egl.EGLSurface)

Example 34 with EGLSurface

use of javax.microedition.khronos.egl.EGLSurface in project android_frameworks_base by ParanoidAndroid.

the class EGLLogWrapper method eglCreateWindowSurface.

public EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) {
    begin("eglCreateWindowSurface");
    arg("display", display);
    arg("config", config);
    arg("native_window", native_window);
    arg("attrib_list", attrib_list);
    end();
    EGLSurface result = mEgl10.eglCreateWindowSurface(display, config, native_window, attrib_list);
    returns(result);
    checkError();
    return result;
}
Also used : EGLSurface(javax.microedition.khronos.egl.EGLSurface)

Example 35 with EGLSurface

use of javax.microedition.khronos.egl.EGLSurface in project android_frameworks_base by ParanoidAndroid.

the class EGLLogWrapper method eglCreatePixmapSurface.

public EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) {
    begin("eglCreatePixmapSurface");
    arg("display", display);
    arg("config", config);
    arg("native_pixmap", native_pixmap);
    arg("attrib_list", attrib_list);
    end();
    EGLSurface result = mEgl10.eglCreatePixmapSurface(display, config, native_pixmap, attrib_list);
    returns(result);
    checkError();
    return result;
}
Also used : EGLSurface(javax.microedition.khronos.egl.EGLSurface)

Aggregations

EGLSurface (javax.microedition.khronos.egl.EGLSurface)48 EGLConfig (javax.microedition.khronos.egl.EGLConfig)20 TargetApi (android.annotation.TargetApi)8 EGL10 (javax.microedition.khronos.egl.EGL10)8 EGLContext (javax.microedition.khronos.egl.EGLContext)8 EGLDisplay (javax.microedition.khronos.egl.EGLDisplay)8