Home
last modified time | relevance | path

Searched refs:EglWrapperFuncPointer (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/frameworks/opengl_wrapper/src/EGL/
H A Degl.cpp69 const std::map<std::string, EglWrapperFuncPointer> gExtensionMap = {
70 { "eglLockSurfaceKHR", (EglWrapperFuncPointer)&eglLockSurfaceKHR },
74 { "eglCreateImageKHR", (EglWrapperFuncPointer)&eglCreateImageKHR },
75 { "eglDestroyImageKHR", (EglWrapperFuncPointer)&eglDestroyImageKHR },
78 { "eglCreateSyncKHR", (EglWrapperFuncPointer)&eglCreateSyncKHR },
79 { "eglDestroySyncKHR", (EglWrapperFuncPointer)&eglDestroySyncKHR },
81 { "eglSignalSyncKHR", (EglWrapperFuncPointer)&eglSignalSyncKHR },
85 { "eglWaitSyncKHR", (EglWrapperFuncPointer)&eglWaitSyncKHR },
93 { "eglCreateStreamKHR", (EglWrapperFuncPointer)&eglCreateStreamKHR },
95 { "eglStreamAttribKHR", (EglWrapperFuncPointer)&eglStreamAttribKHR },
[all …]
H A Degl_wrapper_entry.cpp1430 { "eglGetConfigs", (EglWrapperFuncPointer)&EglGetConfigsImpl },
1433 { "eglGetDisplay", (EglWrapperFuncPointer)&EglGetDisplayImpl },
1434 { "eglGetError", (EglWrapperFuncPointer)&EglGetErrorImpl },
1436 { "eglInitialize", (EglWrapperFuncPointer)&EglInitializeImpl },
1442 { "eglTerminate", (EglWrapperFuncPointer)&EglTerminateImpl },
1443 { "eglWaitGL", (EglWrapperFuncPointer)&EglWaitGLImpl },
1444 { "eglWaitNative", (EglWrapperFuncPointer)&EglWaitNativeImpl },
1453 { "eglBindAPI", (EglWrapperFuncPointer)&EglBindAPIImpl },
1454 { "eglQueryAPI", (EglWrapperFuncPointer)&EglQueryAPIImpl },
1473 { "eglWaitSync", (EglWrapperFuncPointer)&EglWaitSyncImpl },
[all …]
H A Degl_wrapper_layer.cpp55 EglWrapperFuncPointer *curr, char const * const *entries) in UpdateApiEntries()
60 EglWrapperFuncPointer layerFunc = func(name, *curr); in UpdateApiEntries()
73 char const * const *entries, EglWrapperFuncPointer *curr) in SetupFuncMaps()
98 EglWrapperFuncPointer val = (*table)[name]; in GetNextLayerProcAddr()
232 EglWrapperFuncPointer *curr; in SetupLayerFuncTbl()
235 curr = reinterpret_cast<EglWrapperFuncPointer*>(&table->wrapper); in SetupLayerFuncTbl()
239 curr = reinterpret_cast<EglWrapperFuncPointer*>(&table->gl.table2); in SetupLayerFuncTbl()
243 curr = reinterpret_cast<EglWrapperFuncPointer*>(&table->gl.table3); in SetupLayerFuncTbl()
251 curr = reinterpret_cast<EglWrapperFuncPointer *>(&table->wrapper); in SetupLayerFuncTbl()
256 curr = reinterpret_cast<EglWrapperFuncPointer*>(&table->gl.table2); in SetupLayerFuncTbl()
[all …]
H A Degl_pre_initializer.h27 int numApis = sizeof(gGlHookNoContext) / sizeof(EglWrapperFuncPointer); in EglPreInitializer()
28 EglWrapperFuncPointer *iter = reinterpret_cast<EglWrapperFuncPointer*>(&gGlHookNoContext); in EglPreInitializer()
30 *(iter++) = reinterpret_cast<EglWrapperFuncPointer>(CallGlApiNoContext); in EglPreInitializer()
H A Degl_wrapper_layer.h25 using LayerInitFunc = EglWrapperFuncPointer (*)(const void *, GetNextLayerAddr);
26 using LayerSetupFunc = EglWrapperFuncPointer (*)(const char *, EglWrapperFuncPointer);
27 using FunctionTable = std::map<std::string, EglWrapperFuncPointer>;
H A Degl_core.cpp79 EglWrapperFuncPointer *curr = reinterpret_cast<EglWrapperFuncPointer*>(&gWrapperHook.wrapper); in WrapperHookTableInit()
82 EglWrapperFuncPointer addr = FindEglWrapperApi(name); in WrapperHookTableInit()
H A Degl_wrapper_entry.h23 using EglWrapperFuncPointer = __eglMustCastToProperFunctionPointerType; variable
27 EglWrapperFuncPointer FindEglWrapperApi(const std::string &name);
H A Degl_defs.h39 extern const std::map<std::string, EglWrapperFuncPointer> gExtensionMap;