Home | History | Annotate | Download | only in opengl

Lines Matching defs:Boolean

33     boolean mLogArgumentNames;
34 boolean mCheckError;
47 public boolean eglChooseConfig(EGLDisplay display, int[] attrib_list,
55 boolean result = mEgl10.eglChooseConfig(display, attrib_list, configs,
64 public boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface,
72 boolean result = mEgl10.eglCopyBuffers(display, surface, native_pixmap);
141 public boolean eglDestroyContext(EGLDisplay display, EGLContext context) {
147 boolean result = mEgl10.eglDestroyContext(display, context);
153 public boolean eglDestroySurface(EGLDisplay display, EGLSurface surface) {
159 boolean result = mEgl10.eglDestroySurface(display, surface);
165 public boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config,
172 boolean result = mEgl10.eglGetConfigAttrib(display, config, attribute,
180 public boolean eglGetConfigs(EGLDisplay display, EGLConfig[] configs,
187 boolean result = mEgl10.eglGetConfigs(display, configs, config_size,
252 public boolean eglInitialize(EGLDisplay display, int[] major_minor) {
256 boolean result = mEgl10.eglInitialize(display, major_minor);
263 public boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw,
271 boolean result = mEgl10.eglMakeCurrent(display, draw, read, context);
277 public boolean eglQueryContext(EGLDisplay display, EGLContext context,
284 boolean result = mEgl10.eglQueryContext(display, context, attribute,
303 public boolean eglQuerySurface(EGLDisplay display, EGLSurface surface,
310 boolean result = mEgl10.eglQuerySurface(display, surface, attribute,
319 public boolean eglReleaseThread() {
322 boolean result = mEgl10.eglReleaseThread();
328 public boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface) {
333 boolean result = mEgl10.eglSwapBuffers(display, surface);
339 public boolean eglTerminate(EGLDisplay display) {
343 boolean result = mEgl10.eglTerminate(display);
349 public boolean eglWaitGL() {
352 boolean result = mEgl10.eglWaitGL();
358 public boolean eglWaitNative(int engine, Object bindTarget) {
363 boolean result = mEgl10.eglWaitNative(engine, bindTarget);
463 private void returns(boolean result) {
464 returns(Boolean.toString(result));