OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getDeviceProcAddr
(Results
1 - 10
of
10
) sorted by null
/external/deqp/external/vulkancts/framework/vulkan/
vkPlatform.cpp
61
m_vk.
getDeviceProcAddr
= (GetDeviceProcAddrFunc)platformInterface.getInstanceProcAddr(instance, "vkGetDeviceProcAddr");
63
#define GET_PROC_ADDR(NAME) m_vk.
getDeviceProcAddr
(device, NAME)
vkRef.hpp
122
GetDeviceProcAddrFunc
getDeviceProcAddr
= (GetDeviceProcAddrFunc)platformIface.getInstanceProcAddr(instance, "vkGetDeviceProcAddr");
123
m_destroyDevice = (DestroyDeviceFunc)
getDeviceProcAddr
(device, "vkDestroyDevice");
vkDeviceFunctionPointers.inl
4
GetDeviceProcAddrFunc
getDeviceProcAddr
;
vkInitDeviceFunctionPointers.inl
4
m_vk.
getDeviceProcAddr
= (GetDeviceProcAddrFunc) GET_PROC_ADDR("vkGetDeviceProcAddr");
vkDeviceDriverImpl.inl
5
PFN_vkVoidFunction DeviceDriver::
getDeviceProcAddr
(VkDevice device, const char* pName) const
7
return m_vk.
getDeviceProcAddr
(device, pName);
[
all
...]
vkConcreteDeviceInterface.inl
4
virtual PFN_vkVoidFunction
getDeviceProcAddr
(VkDevice device, const char* pName) const;
vkVirtualDeviceInterface.inl
4
virtual PFN_vkVoidFunction
getDeviceProcAddr
(VkDevice device, const char* pName) const = 0;
[
all
...]
vkNullDriver.cpp
650
VKAPI_ATTR PFN_vkVoidFunction VKAPI_CALL
getDeviceProcAddr
(VkDevice device, const char* pName)
[
all
...]
vkNullDriverImpl.inl
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/api/
vktApiVersionCheck.cpp
119
getDeviceProcAddr
= reinterpret_cast<GetDeviceProcAddrFunc>(getInstanceProcAddr(*instance, "vkGetDeviceProcAddr"));
184
GetDeviceProcAddrFunc
getDeviceProcAddr
;
260
if ((
getDeviceProcAddr
(*device, name) == DE_NULL) == shouldBeNonNull)
Completed in 895 milliseconds