Home
last modified time | relevance | path

Searched refs:eglBindTexImage (Results 1 – 24 of 24) sorted by relevance

/external/deqp/framework/egl/wrapper/
DeglwStaticLibrary14.inl7 { "eglBindTexImage", (deFunctionPtr)eglBindTexImage },
DeglwStaticLibrary15.inl7 { "eglBindTexImage", (deFunctionPtr)eglBindTexImage },
DeglwInitCore.inl7 dst->bindTexImage = (eglBindTexImageFunc) loader->get("eglBindTexImage");
DeglwApi.inl7 #define eglBindTexImage eglwBindTexImage macro
/external/mesa3d/src/egl/main/
Degl.def3 eglBindTexImage
Deglentrypoint.h6 EGL_ENTRYPOINT(eglBindTexImage)
Deglapi.c1160 eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglBindTexImage() function
/external/swiftshader/src/OpenGL/libEGL/
DlibEGL.def4 eglBindTexImage @20
DlibEGL.lds5 eglBindTexImage;
DlibEGL.hpp47 EGLBoolean (*eglBindTexImage)(EGLDisplay dpy, EGLSurface surface, EGLint buffer); member in LibEGLexports
Dmain.cpp485 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglBindTexImage() function
682 this->eglBindTexImage = egl::BindTexImage; in LibEGLexports()
DlibEGL.cpp1468 FUNCTION(eglBindTexImage), in GetProcAddress()
/external/mesa3d/src/egl/
Degl-symbols-check14 eglBindTexImage
/external/swiftshader/src/OpenGL/libGLES_CM/
DlibGLES_CM.lds4 eglBindTexImage;
DlibGLES_CM.def3 eglBindTexImage @134
Dmain.cpp436 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglBindTexImage() function
438 return libEGL->eglBindTexImage(dpy, surface, buffer); in eglBindTexImage()
/external/deqp/modules/egl/
DteglNegativeApiTests.cpp174 expectFalse(eglBindTexImage(EGL_NO_DISPLAY, EGL_NO_SURFACE, EGL_BACK_BUFFER)); in init()
177 expectFalse(eglBindTexImage((EGLDisplay)-1, EGL_NO_SURFACE, EGL_BACK_BUFFER)); in init()
184 expectFalse(eglBindTexImage(display, EGL_NO_SURFACE, EGL_BACK_BUFFER)); in init()
187 expectFalse(eglBindTexImage(display, (EGLSurface)-1, EGL_BACK_BUFFER)); in init()
DteglGetProcAddressTests.inl10 "eglBindTexImage",
/external/swiftshader/third_party/PowerVR_SDK/Builds/Include/EGL/
Degl.h291 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer);
/external/mesa3d/include/EGL/
Degl.h163 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer);
/external/swiftshader/include/EGL/
Degl.h163 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage (EGLDisplay dpy, EGLSurface surface, EGLint buffer);
/external/deqp/framework/egl/
DegluCallLogWrapperApi.inl7 eglw::EGLBoolean eglBindTexImage (eglw::EGLDisplay dpy, eglw::EGLSurface surface, eglw:…
DegluCallLogWrapper.inl17 eglw::EGLBoolean CallLogWrapper::eglBindTexImage (eglw::EGLDisplay dpy, eglw::EGLSurface surface, e… function in CallLogWrapper
20 …m_log << TestLog::Message << "eglBindTexImage(" << dpy << ", " << toHex(surface) << ", " << buffer…
/external/swiftshader/tests/GLESUnitTests/
Dunittests.cpp1574 EGLBoolean result = eglBindTexImage(getDisplay(), *pbuffer, EGL_BACK_BUFFER); in bindIOSurfaceToTexture()