OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:deFunctionPtr
(Results
1 - 11
of
11
) sorted by null
/external/deqp/framework/egl/
egluStaticES20Library.inl
6
{ "glActiveTexture", (
deFunctionPtr
)glActiveTexture },
7
{ "glAttachShader", (
deFunctionPtr
)glAttachShader },
8
{ "glBindAttribLocation", (
deFunctionPtr
)glBindAttribLocation },
9
{ "glBindBuffer", (
deFunctionPtr
)glBindBuffer },
10
{ "glBindFramebuffer", (
deFunctionPtr
)glBindFramebuffer },
11
{ "glBindRenderbuffer", (
deFunctionPtr
)glBindRenderbuffer },
12
{ "glBindTexture", (
deFunctionPtr
)glBindTexture },
13
{ "glBlendColor", (
deFunctionPtr
)glBlendColor },
14
{ "glBlendEquation", (
deFunctionPtr
)glBlendEquation },
15
{ "glBlendEquationSeparate", (
deFunctionPtr
)glBlendEquationSeparate }
[
all
...]
egluStaticES30Library.inl
6
{ "glActiveTexture", (
deFunctionPtr
)glActiveTexture },
7
{ "glAttachShader", (
deFunctionPtr
)glAttachShader },
8
{ "glBeginQuery", (
deFunctionPtr
)glBeginQuery },
9
{ "glBeginTransformFeedback", (
deFunctionPtr
)glBeginTransformFeedback },
10
{ "glBindAttribLocation", (
deFunctionPtr
)glBindAttribLocation },
11
{ "glBindBuffer", (
deFunctionPtr
)glBindBuffer },
12
{ "glBindBufferBase", (
deFunctionPtr
)glBindBufferBase },
13
{ "glBindBufferRange", (
deFunctionPtr
)glBindBufferRange },
14
{ "glBindFramebuffer", (
deFunctionPtr
)glBindFramebuffer },
15
{ "glBindRenderbuffer", (
deFunctionPtr
)glBindRenderbuffer }
[
all
...]
/external/deqp/framework/egl/wrapper/
eglwStaticLibrary14.inl
6
{ "eglBindAPI", (
deFunctionPtr
)eglBindAPI },
7
{ "eglBindTexImage", (
deFunctionPtr
)eglBindTexImage },
8
{ "eglChooseConfig", (
deFunctionPtr
)eglChooseConfig },
9
{ "eglCopyBuffers", (
deFunctionPtr
)eglCopyBuffers },
10
{ "eglCreateContext", (
deFunctionPtr
)eglCreateContext },
11
{ "eglCreatePbufferFromClientBuffer", (
deFunctionPtr
)eglCreatePbufferFromClientBuffer },
12
{ "eglCreatePbufferSurface", (
deFunctionPtr
)eglCreatePbufferSurface },
13
{ "eglCreatePixmapSurface", (
deFunctionPtr
)eglCreatePixmapSurface },
14
{ "eglCreateWindowSurface", (
deFunctionPtr
)eglCreateWindowSurface },
15
{ "eglDestroyContext", (
deFunctionPtr
)eglDestroyContext }
[
all
...]
eglwStaticLibrary15.inl
6
{ "eglBindAPI", (
deFunctionPtr
)eglBindAPI },
7
{ "eglBindTexImage", (
deFunctionPtr
)eglBindTexImage },
8
{ "eglChooseConfig", (
deFunctionPtr
)eglChooseConfig },
9
{ "eglClientWaitSync", (
deFunctionPtr
)eglClientWaitSync },
10
{ "eglCopyBuffers", (
deFunctionPtr
)eglCopyBuffers },
11
{ "eglCreateContext", (
deFunctionPtr
)eglCreateContext },
12
{ "eglCreateImage", (
deFunctionPtr
)eglCreateImage },
13
{ "eglCreatePbufferFromClientBuffer", (
deFunctionPtr
)eglCreatePbufferFromClientBuffer },
14
{ "eglCreatePbufferSurface", (
deFunctionPtr
)eglCreatePbufferSurface },
15
{ "eglCreatePixmapSurface", (
deFunctionPtr
)eglCreatePixmapSurface }
[
all
...]
/external/deqp/framework/common/
tcuFunctionLibrary.hpp
44
virtual
deFunctionPtr
getFunction (const char* funcName) const = 0;
57
deFunctionPtr
ptr;
63
deFunctionPtr
getFunction (const char* funcName) const;
71
std::map<std::string,
deFunctionPtr
> m_functions;
80
deFunctionPtr
getFunction (const char* funcName) const;
95
deFunctionPtr
getFunction (const char* funcName) const;
tcuFunctionLibrary.cpp
51
deFunctionPtr
StaticFunctionLibrary::getFunction (const char* funcName) const
53
std::map<std::string,
deFunctionPtr
>::const_iterator iter = m_functions.find(funcName);
72
deFunctionPtr
DynamicFunctionLibrary::getFunction (const char* funcName) const
89
deFunctionPtr
CompositeFunctionLibrary::getFunction (const char* name) const
93
const
deFunctionPtr
ptr = m_libraries[ndx].getFunction(name);
/external/deqp/framework/delibs/deutil/
deDynamicLibrary.h
51
deFunctionPtr
deDynamicLibrary_getFunction (const deDynamicLibrary* library, const char* symbolName);
deDynamicLibrary.c
60
deFunctionPtr
deDynamicLibrary_getFunction (const deDynamicLibrary* library, const char* symbolName)
65
deFunctionPtr
funcPtr;
109
deFunctionPtr
deDynamicLibrary_getFunction (const deDynamicLibrary* library, const char* symbolName)
112
return (
deFunctionPtr
)GetProcAddress(library->handle, symbolName);
/external/deqp/framework/delibs/decpp/
deDynamicLibrary.hpp
41
deFunctionPtr
getFunction (const char* name) const { return deDynamicLibrary_getFunction(m_library, name); }
/external/deqp/framework/delibs/debase/
deDefs.h
208
typedef void (*
deFunctionPtr
) (void);
/external/deqp/external/vulkancts/framework/vulkan/
vkNullDriver.cpp
149
#define VK_NULL_FUNC_ENTRY(NAME, FUNC) { #NAME, (
deFunctionPtr
)FUNC }
Completed in 907 milliseconds