Searched refs:egl_connection_t (Results 1 – 15 of 15) sorted by relevance
/frameworks/native/opengl/libs/EGL/ |
D | eglApi.cpp | 50 egl_connection_t* const cnx = &gEGLImpl; in eglGetDisplay() 65 egl_connection_t* const cnx = &gEGLImpl; in eglGetPlatformDisplay() 72 egl_connection_t* const cnx = &gEGLImpl; in eglInitialize() 79 egl_connection_t* const cnx = &gEGLImpl; in eglTerminate() 87 egl_connection_t* const cnx = &gEGLImpl; in eglGetConfigs() 95 egl_connection_t* const cnx = &gEGLImpl; in eglChooseConfig() 102 egl_connection_t* const cnx = &gEGLImpl; in eglGetConfigAttrib() 110 egl_connection_t* const cnx = &gEGLImpl; in eglCreateWindowSurface() 118 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePlatformWindowSurface() 126 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePixmapSurface() [all …]
|
D | Loader.h | 25 struct egl_connection_t; 50 void* open(egl_connection_t* cnx); 51 void close(egl_connection_t* cnx); 55 driver_t* attempt_to_load_angle(egl_connection_t* cnx); 56 driver_t* attempt_to_load_updated_driver(egl_connection_t* cnx); 57 …driver_t* attempt_to_load_system_driver(egl_connection_t* cnx, const char* suffix, const bool exac… 58 void unload_system_driver(egl_connection_t* cnx); 59 void initialize_api(void* dso, egl_connection_t* cnx, uint32_t mask); 60 void init_angle_backend(void* dso, egl_connection_t* cnx);
|
D | egl.cpp | 33 egl_connection_t gEGLImpl; 118 egl_connection_t* egl_get_connection() { in egl_get_connection() 135 egl_connection_t* cnx = &gEGLImpl; in egl_init_drivers_locked() 136 cnx->hooks[egl_connection_t::GLESv1_INDEX] = &gHooks[egl_connection_t::GLESv1_INDEX]; in egl_init_drivers_locked() 137 cnx->hooks[egl_connection_t::GLESv2_INDEX] = &gHooks[egl_connection_t::GLESv2_INDEX]; in egl_init_drivers_locked()
|
D | egl_platform_entries.cpp | 316 egl_connection_t* const cnx = &gEGLImpl; in eglGetConfigsImpl() 335 egl_connection_t* const cnx = &gEGLImpl; in eglChooseConfigImpl() 395 egl_connection_t* cnx = nullptr; in eglGetConfigAttribImpl() 568 void getNativePixelFormat(EGLDisplay dpy, egl_connection_t* cnx, EGLConfig config, in getNativePixelFormat() 653 EGLSurface eglCreateWindowSurfaceTmpl(egl_display_t* dp, egl_connection_t* cnx, EGLConfig config, in eglCreateWindowSurfaceTmpl() 743 egl_connection_t* cnx = nullptr; in eglCreateWindowSurfaceImpl() 755 egl_connection_t* cnx = nullptr; in eglCreatePlatformWindowSurfaceImpl() 796 egl_connection_t* cnx = nullptr; in eglCreatePlatformPixmapSurfaceImpl() 806 egl_connection_t* cnx = nullptr; in eglCreatePixmapSurfaceImpl() 816 egl_connection_t* cnx = nullptr; in eglCreatePbufferSurfaceImpl() [all …]
|
D | Loader.cpp | 146 static bool should_unload_system_driver(egl_connection_t* cnx) { in should_unload_system_driver() 174 void Loader::unload_system_driver(egl_connection_t* cnx) { in unload_system_driver() 179 ->hooks[egl_connection_t::GLESv2_INDEX] in unload_system_driver() 183 ->hooks[egl_connection_t::GLESv1_INDEX] in unload_system_driver() 205 void* Loader::open(egl_connection_t* cnx) in open() 307 void Loader::close(egl_connection_t* cnx) in close() 523 Loader::driver_t* Loader::attempt_to_load_angle(egl_connection_t* cnx) { in attempt_to_load_angle() 555 void Loader::init_angle_backend(void* dso, egl_connection_t* cnx) { in init_angle_backend() 566 Loader::driver_t* Loader::attempt_to_load_updated_driver(egl_connection_t* cnx) { in attempt_to_load_updated_driver() 600 Loader::driver_t* Loader::attempt_to_load_system_driver(egl_connection_t* cnx, const char* suffix, in attempt_to_load_system_driver() [all …]
|
D | egldefs.h | 36 struct egl_connection_t { struct 39 inline egl_connection_t() in egl_connection_t() function 87 extern egl_connection_t gEGLImpl; argument
|
D | egl_object.h | 130 EGLint colorSpace, egl_connection_t const* cnx); 154 egl_connection_t const* cnx; 194 egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config, egl_connection_t const* cnx, 205 egl_connection_t const* cnx;
|
D | egl_display.cpp | 133 static EGLDisplay getPlatformDisplayAngle(EGLNativeDisplayType display, egl_connection_t* const cnx, in getPlatformDisplayAngle() 190 egl_connection_t* const cnx = &gEGLImpl; in getPlatformDisplay() 247 egl_connection_t* const cnx = &gEGLImpl; in initialize() 271 egl_connection_t* const cnx = &gEGLImpl; in initialize() 420 egl_connection_t* const cnx = &gEGLImpl; in terminate() 543 egl_display_t* validate_display_connection(EGLDisplay dpy, egl_connection_t** outCnx) { in validate_display_connection()
|
D | egl_display.h | 39 struct egl_connection_t; 134 egl_display_t* validate_display_connection(EGLDisplay dpy, egl_connection_t** outCnx);
|
D | egl_layers.cpp | 268 void LayerLoader::InitLayers(egl_connection_t* cnx) { in InitLayers() 297 curr = reinterpret_cast<EGLFuncPointer*>(&cnx->hooks[egl_connection_t::GLESv2_INDEX]->gl); in InitLayers() 331 curr = reinterpret_cast<EGLFuncPointer*>(&cnx->hooks[egl_connection_t::GLESv2_INDEX]->gl); in InitLayers()
|
D | egl_layers.h | 47 void InitLayers(egl_connection_t*);
|
D | egl_object.cpp | 52 EGLSurface surface, EGLint colorSpace, egl_connection_t const* cnx) in egl_surface_t() 293 egl_connection_t const* cnx, int version) in egl_context_t()
|
D | egl_cache.cpp | 74 egl_connection_t* const cnx = &gEGLImpl; in initialize()
|
/frameworks/native/opengl/libs/GLES2/ |
D | gl2.cpp | 304 egl_connection_t* const cnx = egl_get_connection(); in glGetString() 309 egl_connection_t* const cnx = egl_get_connection(); in glGetStringi() 314 egl_connection_t* const cnx = egl_get_connection(); in glGetBooleanv() 319 egl_connection_t* const cnx = egl_get_connection(); in glGetFloatv() 324 egl_connection_t* const cnx = egl_get_connection(); in glGetIntegerv() 329 egl_connection_t* const cnx = egl_get_connection(); in glGetInteger64v()
|
/frameworks/native/opengl/libs/ |
D | egl_impl.h | 35 EGLAPI egl_connection_t* egl_get_connection();
|