Home
last modified time | relevance | path

Searched refs:egl_connection_t (Results 1 – 15 of 15) sorted by relevance

/frameworks/native/opengl/libs/EGL/
DeglApi.cpp51 egl_connection_t* const cnx = &gEGLImpl; in eglGetDisplay()
66 egl_connection_t* const cnx = &gEGLImpl; in eglGetPlatformDisplay()
73 egl_connection_t* const cnx = &gEGLImpl; in eglInitialize()
80 egl_connection_t* const cnx = &gEGLImpl; in eglTerminate()
88 egl_connection_t* const cnx = &gEGLImpl; in eglGetConfigs()
96 egl_connection_t* const cnx = &gEGLImpl; in eglChooseConfig()
103 egl_connection_t* const cnx = &gEGLImpl; in eglGetConfigAttrib()
111 egl_connection_t* const cnx = &gEGLImpl; in eglCreateWindowSurface()
119 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePlatformWindowSurface()
127 egl_connection_t* const cnx = &gEGLImpl; in eglCreatePixmapSurface()
[all …]
DLoader.h28 struct egl_connection_t;
53 void* open(egl_connection_t* cnx);
54 void close(egl_connection_t* cnx);
58 driver_t* attempt_to_load_angle(egl_connection_t* cnx);
59 driver_t* attempt_to_load_updated_driver(egl_connection_t* cnx);
60 …driver_t* attempt_to_load_system_driver(egl_connection_t* cnx, const char* suffix, const bool exac…
61 void unload_system_driver(egl_connection_t* cnx);
62 void initialize_api(void* dso, egl_connection_t* cnx, uint32_t mask);
63 void init_angle_backend(void* dso, egl_connection_t* cnx);
Degl.cpp39 egl_connection_t gEGLImpl;
95 egl_connection_t*& cnx) { in validate_display_connection()
165 egl_connection_t* egl_get_connection() { in egl_get_connection()
181 egl_connection_t* cnx = &gEGLImpl; in egl_init_drivers_locked()
182 cnx->hooks[egl_connection_t::GLESv1_INDEX] = &gHooks[egl_connection_t::GLESv1_INDEX]; in egl_init_drivers_locked()
183 cnx->hooks[egl_connection_t::GLESv2_INDEX] = &gHooks[egl_connection_t::GLESv2_INDEX]; in egl_init_drivers_locked()
Degl_platform_entries.cpp358 egl_connection_t* const cnx = &gEGLImpl; in eglGetConfigsImpl()
381 egl_connection_t* const cnx = &gEGLImpl; in eglChooseConfigImpl()
444 egl_connection_t* cnx = nullptr; in eglGetConfigAttribImpl()
617 void getNativePixelFormat(EGLDisplay dpy, egl_connection_t* cnx, EGLConfig config, in getNativePixelFormat()
702 EGLSurface eglCreateWindowSurfaceTmpl(egl_display_ptr dp, egl_connection_t* cnx, EGLConfig config, in eglCreateWindowSurfaceTmpl()
792 egl_connection_t* cnx = NULL; in eglCreateWindowSurfaceImpl()
804 egl_connection_t* cnx = NULL; in eglCreatePlatformWindowSurfaceImpl()
845 egl_connection_t* cnx = NULL; in eglCreatePlatformPixmapSurfaceImpl()
855 egl_connection_t* cnx = nullptr; in eglCreatePixmapSurfaceImpl()
865 egl_connection_t* cnx = nullptr; in eglCreatePbufferSurfaceImpl()
[all …]
DLoader.cpp150 static bool should_unload_system_driver(egl_connection_t* cnx) { in should_unload_system_driver()
180 void Loader::unload_system_driver(egl_connection_t* cnx) { in unload_system_driver()
185 ->hooks[egl_connection_t::GLESv2_INDEX] in unload_system_driver()
189 ->hooks[egl_connection_t::GLESv1_INDEX] in unload_system_driver()
211 void* Loader::open(egl_connection_t* cnx) in open()
313 void Loader::close(egl_connection_t* cnx) in close()
527 Loader::driver_t* Loader::attempt_to_load_angle(egl_connection_t* cnx) { in attempt_to_load_angle()
559 void Loader::init_angle_backend(void* dso, egl_connection_t* cnx) { in init_angle_backend()
574 Loader::driver_t* Loader::attempt_to_load_updated_driver(egl_connection_t* cnx) { in attempt_to_load_updated_driver()
611 Loader::driver_t* Loader::attempt_to_load_system_driver(egl_connection_t* cnx, const char* suffix, in attempt_to_load_system_driver()
[all …]
Degldefs.h41 struct egl_connection_t { struct
47 inline egl_connection_t() : dso(nullptr), in egl_connection_t() function
100 extern egl_connection_t gEGLImpl; argument
Degl_object.h135 EGLint colorSpace, egl_connection_t const* cnx);
157 egl_connection_t const* cnx;
196 egl_connection_t const* cnx, int version);
206 egl_connection_t const* cnx;
Degl_display.cpp137 static EGLDisplay getPlatformDisplayAngle(EGLNativeDisplayType display, egl_connection_t* const cnx, in getPlatformDisplayAngle()
185 egl_connection_t* const cnx = &gEGLImpl; in getPlatformDisplay()
236 egl_connection_t* const cnx = &gEGLImpl; in initialize()
260 egl_connection_t* const cnx = &gEGLImpl; in initialize()
419 egl_connection_t* const cnx = &gEGLImpl; in terminate()
Degl_display.h43 struct egl_connection_t;
190 egl_connection_t*& cnx);
Degl_layers.cpp256 void LayerLoader::InitLayers(egl_connection_t* cnx) { in InitLayers()
285 curr = reinterpret_cast<EGLFuncPointer*>(&cnx->hooks[egl_connection_t::GLESv2_INDEX]->gl); in InitLayers()
319 curr = reinterpret_cast<EGLFuncPointer*>(&cnx->hooks[egl_connection_t::GLESv2_INDEX]->gl); in InitLayers()
Degl_layers.h48 void InitLayers(egl_connection_t*);
Degl_object.cpp59 EGLSurface surface, EGLint colorSpace, egl_connection_t const* cnx) in egl_surface_t()
282 egl_connection_t const* cnx, int version) : in egl_context_t()
Degl_cache.cpp82 egl_connection_t* const cnx = &gEGLImpl; in initialize()
/frameworks/native/opengl/libs/GLES2/
Dgl2.cpp304 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/
Degl_impl.h35 EGLAPI egl_connection_t* egl_get_connection();