Searched refs:EGLFuncPointer (Results 1 – 7 of 7) sorted by relevance
/frameworks/native/opengl/libs/EGL/ |
D | egl_layers.h | 33 typedef __eglMustCastToProperFunctionPointerType EGLFuncPointer; typedef 43 typedef EGLFuncPointer (*layer_init_func)( 45 typedef EGLFuncPointer (*layer_setup_func)(const char* name, EGLFuncPointer next); 49 void LayerPlatformEntries(layer_setup_func layer_setup, EGLFuncPointer*, char const* const*); 50 void LayerDriverEntries(layer_setup_func layer_setup, EGLFuncPointer*, char const* const*); 54 EGLFuncPointer GetGpaNext(unsigned i); 55 EGLFuncPointer ApplyLayer(layer_setup_func layer_setup, const char* name, EGLFuncPointer next); 56 EGLFuncPointer ApplyLayers(const char* name, EGLFuncPointer next);
|
D | egl_layers.cpp | 60 EGLFuncPointer x[kFuncCount]; 61 EGLFuncPointer& operator[](int i) { return x[i]; } in operator []() 77 EGLFuncPointer val; in getNextLayerProcAddress() 89 EGLFuncPointer gpaNext = (*next_layer_funcs)[gpaIndex]; in getNextLayerProcAddress() 97 val = reinterpret_cast<EGLFuncPointer>(next(name)); in getNextLayerProcAddress() 112 void SetupFuncMaps(FunctionTable& functions, char const* const* entries, EGLFuncPointer* curr, in SetupFuncMaps() 168 EGLFuncPointer LayerLoader::ApplyLayer(layer_setup_func layer_setup, const char* name, in ApplyLayer() 169 EGLFuncPointer next) { in ApplyLayer() 173 EGLFuncPointer layer_entry = next; in ApplyLayer() 185 EGLFuncPointer LayerLoader::ApplyLayers(const char* name, EGLFuncPointer next) { in ApplyLayers() [all …]
|
D | egl_platform_entries.cpp | 2638 EGLFuncPointer address; 2643 { "eglGetDisplay", (EGLFuncPointer)&eglGetDisplayImpl }, 2644 { "eglGetPlatformDisplay", (EGLFuncPointer)&eglGetPlatformDisplayImpl }, 2645 { "eglInitialize", (EGLFuncPointer)&eglInitializeImpl }, 2646 { "eglTerminate", (EGLFuncPointer)&eglTerminateImpl }, 2647 { "eglGetConfigs", (EGLFuncPointer)&eglGetConfigsImpl }, 2648 { "eglChooseConfig", (EGLFuncPointer)&eglChooseConfigImpl }, 2649 { "eglGetConfigAttrib", (EGLFuncPointer)&eglGetConfigAttribImpl }, 2650 { "eglCreateWindowSurface", (EGLFuncPointer)&eglCreateWindowSurfaceImpl }, 2651 { "eglCreatePixmapSurface", (EGLFuncPointer)&eglCreatePixmapSurfaceImpl }, [all …]
|
D | GLES_layers.md | 24 void* AndroidGLESLayer_GetProcAddress(const char *funcName, EGLFuncPointer next) 112 std::unordered_map<std::string, EGLFuncPointer> funcMap; 118 EGLFuncPointer entry = funcMap["eglChooseConfig"]; 128 EGLAPI EGLFuncPointer EGLAPIENTRY eglGPA(const char* funcName) { 131 return (EGLFuncPointer)glesLayer_##func; } 145 EGLAPI EGLFuncPointer EGLAPIENTRY glesLayer_GetLayerProcAddress( 146 const char* funcName, EGLFuncPointer next) { 147 EGLFuncPointer entry = eglGPA(funcName); 163 const char *funcName, EGLFuncPointer next) { 173 std::unordered_map<std::string, EGLFuncPointer> funcMap; [all …]
|
D | egldefs.h | 54 EGLFuncPointer* curr = reinterpret_cast<EGLFuncPointer*>(&platform); in egl_connection_t() 57 EGLFuncPointer f = FindPlatformImplAddr(name); in egl_connection_t()
|
D | egl_platform_entries.h | 22 typedef __eglMustCastToProperFunctionPointerType EGLFuncPointer; typedef 27 EGLFuncPointer FindPlatformImplAddr(const char* name);
|
D | egl.cpp | 74 int numHooks = sizeof(gHooksNoContext) / sizeof(EGLFuncPointer); in early_egl_init() 75 EGLFuncPointer *iter = reinterpret_cast<EGLFuncPointer*>(&gHooksNoContext); in early_egl_init() 77 *(iter++) = reinterpret_cast<EGLFuncPointer>(gl_no_context); in early_egl_init()
|