HomeSort by relevance Sort by last modified time
    Searched refs:EGL_FALSE (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
libEGL.cpp 130 return error(EGL_BAD_DISPLAY, EGL_FALSE);
137 return error(EGL_NOT_INITIALIZED, EGL_FALSE);
147 return error(EGL_BAD_ALLOC, EGL_FALSE);
150 return EGL_FALSE;
161 return error(EGL_BAD_DISPLAY, EGL_FALSE);
172 return error(EGL_BAD_ALLOC, EGL_FALSE);
175 return EGL_FALSE;
225 return EGL_FALSE;
230 return error(EGL_BAD_PARAMETER, EGL_FALSE);
237 return error(EGL_BAD_ATTRIBUTE, EGL_FALSE);
    [all...]
Config.cpp 110 mBindToTextureRGB = EGL_FALSE;
111 mBindToTextureRGBA = EGL_FALSE;
166 mNativeRenderable = EGL_FALSE;
  /development/tools/emulator/opengl/system/egl/
egl.cpp 128 setErrorReturn(EGL_BAD_SURFACE, EGL_FALSE); \
130 setErrorReturn(EGL_BAD_DISPLAY, EGL_FALSE); \
219 : dpy(dpy), config(config), surfaceType(surfaceType), valid(EGL_FALSE), rcSurface(0)
282 DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
286 return EGL_FALSE;
296 return EGL_FALSE;
299 DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
310 setErrorReturn(EGL_BAD_ALLOC, EGL_FALSE);
316 DEFINE_AND_VALIDATE_HOST_CONNECTION(EGL_FALSE);
333 setErrorReturn(EGL_BAD_ACCESS, EGL_FALSE);
    [all...]
eglDisplay.cpp 401 return EGL_FALSE;
434 return EGL_FALSE;
460 return EGL_FALSE;
470 return EGL_FALSE;
484 return EGL_FALSE;
493 else return EGL_FALSE;
  /frameworks/base/opengl/libs/EGL/
eglApi.cpp 134 if (egl_init_drivers() == EGL_FALSE) {
151 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
167 if (!dp) return setError(EGL_BAD_DISPLAY, EGL_FALSE);
185 if (!dp) return EGL_FALSE;
211 if (!dp) return EGL_FALSE;
214 return setError(EGL_BAD_PARAMETER, EGL_FALSE);
218 EGLBoolean res = EGL_FALSE;
243 return setError(EGL_BAD_ALLOC, EGL_FALSE);
306 return setError(EGL_BAD_CONFIG, EGL_FALSE);
327 if (!cnx) return EGL_FALSE;
    [all...]
egl_display.cpp 245 EGLBoolean res = EGL_FALSE;
290 return setError(EGL_NOT_INITIALIZED, EGL_FALSE);
298 return setError(EGL_NOT_INITIALIZED, EGL_FALSE);
307 EGLBoolean res = EGL_FALSE;
311 if (cnx->egl.eglTerminate(disp[i].dpy) == EGL_FALSE) {
egl.cpp 248 return EGL_FALSE;
278 return EGL_FALSE;
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
app-linux.c 127 if (success != EGL_FALSE)
129 if (success != EGL_FALSE)
132 if (success != EGL_FALSE)
136 success = EGL_FALSE;
138 if (success != EGL_FALSE)
168 if (success != EGL_FALSE)
173 success = EGL_FALSE;
175 if (success != EGL_FALSE)
179 if (success == EGL_FALSE)
182 return success != EGL_FALSE;
    [all...]
app-win32.c 121 if (success != EGL_FALSE)
123 if (success != EGL_FALSE)
126 if (success != EGL_FALSE)
131 success = EGL_FALSE;
133 if (success != EGL_FALSE)
137 success = EGL_FALSE;
139 if (success != EGL_FALSE)
143 if (success == EGL_FALSE)
  /frameworks/base/opengl/libagl/
egl.cpp 106 return ((uintptr_t(dpy)-1U) >= NUM_DISPLAYS) ? EGL_FALSE : EGL_TRUE;
192 return EGL_FALSE;
209 return EGL_FALSE;
376 return setError(EGL_BAD_ALLOC, EGL_FALSE);
388 return setError(EGL_BAD_ALLOC, EGL_FALSE);
402 return setError(EGL_BAD_ACCESS, EGL_FALSE);
487 return setError(EGL_BAD_ACCESS, EGL_FALSE);
543 setError(EGL_BAD_ALLOC, EGL_FALSE);
544 return EGL_FALSE;
557 return setError(EGL_BAD_ACCESS, EGL_FALSE);
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/EGL/
EglPbufferSurface.h 29 m_texMipmap(EGL_FALSE),
30 m_largest(EGL_FALSE){};
EglImp.cpp 127 VALIDATE_DISPLAY_RETURN(EGLDisplay,EGL_FALSE)
130 VALIDATE_CONFIG_RETURN(EGLConfig,EGL_FALSE)
133 VALIDATE_SURFACE_RETURN(EGLSurface,EGL_FALSE,varName)
136 VALIDATE_CONTEXT_RETURN(EGLContext,EGL_FALSE)
203 RETURN_ERROR(EGL_FALSE,EGL_BAD_DISPLAY);
218 return EGL_FALSE;
263 RETURN_ERROR(EGL_FALSE,EGL_BAD_PARAMETER);
280 RETURN_ERROR(EGL_FALSE,EGL_BAD_PARAMETER);
321 RETURN_ERROR(EGL_FALSE,EGL_BAD_ATTRIBUTE);
327 RETURN_ERROR(EGL_FALSE,EGL_BAD_ATTRIBUTE)
    [all...]
EglConfig.cpp 47 m_bind_to_tex_rgb(EGL_FALSE), //not supported for now
48 m_bind_to_tex_rgba(EGL_FALSE), //not supported for now
EglMacApi.cpp 59 EGLBoolean renderable = EGL_FALSE;
  /external/mesa3d/test/
egl.cpp 133 return ((uintptr_t(dpy)-1U) >= NUM_DISPLAYS) ? EGL_FALSE : EGL_TRUE;
223 return EGL_FALSE;
244 return EGL_FALSE;
421 return setError(EGL_BAD_ALLOC, EGL_FALSE);
433 return setError(EGL_BAD_ALLOC, EGL_FALSE);
447 return setError(EGL_BAD_ACCESS, EGL_FALSE);
533 return setError(EGL_BAD_ACCESS, EGL_FALSE);
590 setError(EGL_BAD_ALLOC, EGL_FALSE);
591 return EGL_FALSE;
604 return setError(EGL_BAD_ACCESS, EGL_FALSE);
    [all...]
  /frameworks/base/libs/ui/
EGLUtils.cpp 70 if (eglGetConfigs(dpy, NULL, 0, &numConfigs) == EGL_FALSE)
74 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) {
  /development/tools/emulator/opengl/host/libs/libOpenglRender/
RenderControl.cpp 35 return EGL_FALSE;
252 return EGL_FALSE;
257 return (ret ? EGL_TRUE : EGL_FALSE);
  /development/ndk/platforms/android-9/samples/native-activity/jni/
main.c 104 if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE) {
  /external/webrtc/src/modules/audio_processing/main/test/android/apmtest/jni/
main.c 104 if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE) {
  /frameworks/base/opengl/tests/angeles/include/GLES/
egl.h 93 #define EGL_FALSE 0
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 252 if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE)
355 if (res == EGL_FALSE)
  /development/ndk/platforms/android-9/include/EGL/
egl.h 64 #define EGL_FALSE 0
  /development/tools/emulator/opengl/host/libs/Translator/include/EGL/
egl.h 64 #define EGL_FALSE 0
  /external/webkit/Source/ThirdParty/ANGLE/include/EGL/
egl.h 64 #define EGL_FALSE 0
  /frameworks/base/opengl/include/EGL/
egl.h 64 #define EGL_FALSE 0

Completed in 248 milliseconds

1 2