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;
}
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;
}
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;
}
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;
}
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;
}
Aggregations