Home
last modified time | relevance | path

Searched refs:HandleType (Results 1 - 25 of 42) sorted by relevance

12

/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_shared.hpp18 template <typename HandleType>
25 template <typename HandleType, typename = void>
30 template <typename HandleType>
31 struct HasDestructorType<HandleType, decltype( (void)typename SharedHandleTraits<HandleType>::DestructorType() )> : std::true_type
35 template <typename HandleType, typename Enable = void>
41 template <typename HandleType>
42 struct GetDestructorType<HandleType, typename std::enable_if<HasDestructorType<HandleType>::value>::type>
44 using type = typename SharedHandleTraits<HandleType>
[all...]
/third_party/skia/third_party/externals/dawn/src/common/
H A Dvulkan_platform.h83 template <typename Tag, typename HandleType>
92 VkHandle(const VkHandle<Tag, HandleType>& other) = default;
93 VkHandle& operator=(const VkHandle<Tag, HandleType>&) = default;
96 bool operator==(VkHandle<Tag, HandleType> other) const { in operator ==()
99 bool operator!=(VkHandle<Tag, HandleType> other) const { in operator !=()
112 operator HandleType() const { in operator HandleType()
116 HandleType GetHandle() const { in GetHandle()
120 HandleType& operator*() { in operator *()
124 static VkHandle<Tag, HandleType> CreateFromHandle(HandleType handl
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A DMemoryObjectVk.cpp62 VkExternalMemoryHandleTypeFlagBits ToVulkanHandleType(gl::HandleType handleType) in ToVulkanHandleType()
66 case gl::HandleType::OpaqueFd: in ToVulkanHandleType()
68 case gl::HandleType::ZirconVmo: in ToVulkanHandleType()
112 gl::HandleType handleType, in importFd()
119 case gl::HandleType::OpaqueFd: in importFd()
130 gl::HandleType handleType, in importZirconHandle()
137 case gl::HandleType::ZirconVmo: in importZirconHandle()
148 ASSERT(mHandleType == gl::HandleType::InvalidEnum); in importOpaqueFd()
151 mHandleType = gl::HandleType::OpaqueFd; in importOpaqueFd()
159 ASSERT(mHandleType == gl::HandleType in importZirconVmo()
[all...]
H A DMemoryObjectVk.h31 gl::HandleType handleType,
36 gl::HandleType handleType,
60 gl::HandleType mHandleType = gl::HandleType::InvalidEnum;
H A Dvk_utils.cpp800 GarbageObject::GarbageObject() : mHandleType(HandleType::Invalid), mHandle(VK_NULL_HANDLE) {} in GarbageObject()
802 GarbageObject::GarbageObject(HandleType handleType, GarbageHandle handle) in GarbageObject()
827 case HandleType::Semaphore: in destroy()
830 case HandleType::CommandBuffer: in destroy()
834 case HandleType::Event: in destroy()
837 case HandleType::Fence: in destroy()
840 case HandleType::DeviceMemory: in destroy()
843 case HandleType::Buffer: in destroy()
846 case HandleType::BufferView: in destroy()
849 case HandleType in destroy()
[all...]
H A DSemaphoreVk.cpp30 angle::Result SemaphoreVk::importFd(gl::Context *context, gl::HandleType handleType, GLint fd) in importFd()
36 case gl::HandleType::OpaqueFd: in importFd()
46 gl::HandleType handleType, in importZirconHandle()
53 case gl::HandleType::ZirconEvent: in importZirconHandle()
H A DSemaphoreVk.h26 angle::Result importFd(gl::Context *context, gl::HandleType handleType, GLint fd) override;
29 gl::HandleType handleType,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A DMemoryObjectImpl.h37 gl::HandleType handleType,
41 gl::HandleType handleType,
H A DSemaphoreImpl.h33 virtual angle::Result importFd(gl::Context *context, gl::HandleType handleType, GLint fd) = 0;
36 gl::HandleType handleType,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DSemaphoreGL.h24 angle::Result importFd(gl::Context *context, gl::HandleType handleType, GLint fd) override;
27 gl::HandleType handleType,
H A DMemoryObjectGL.h29 gl::HandleType handleType,
34 gl::HandleType handleType,
H A DMemoryObjectGL.cpp52 gl::HandleType handleType, in importFd()
63 gl::HandleType handleType, in importZirconHandle()
H A DSemaphoreGL.cpp63 angle::Result SemaphoreGL::importFd(gl::Context *context, gl::HandleType handleType, GLint fd) in importFd()
71 gl::HandleType handleType, in importZirconHandle()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DSemaphore.h40 angle::Result importFd(Context *context, HandleType handleType, GLint fd);
41 angle::Result importZirconHandle(Context *context, HandleType handleType, GLuint handle);
H A DMemoryObject.h44 angle::Result importFd(Context *context, GLuint64 size, HandleType handleType, GLint fd);
47 HandleType handleType,
H A DMemoryObject.cpp48 HandleType handleType, in importFd()
58 HandleType handleType, in importZirconHandle()
H A DSemaphore.cpp28 angle::Result Semaphore::importFd(Context *context, HandleType handleType, GLint fd) in importFd()
33 angle::Result Semaphore::importZirconHandle(Context *context, HandleType handleType, GLuint handle) in importZirconHandle()
H A DvalidationESEXT.cpp1126 HandleType handleType, in ValidateImportMemoryFdEXT()
1137 case HandleType::OpaqueFd: in ValidateImportMemoryFdEXT()
1151 HandleType handleType, in ValidateImportMemoryZirconHandleANGLE()
1162 case HandleType::ZirconVmo: in ValidateImportMemoryZirconHandleANGLE()
1330 HandleType handleType, in ValidateImportSemaphoreFdEXT()
1341 case HandleType::OpaqueFd: in ValidateImportSemaphoreFdEXT()
1466 HandleType handleType, in ValidateImportSemaphoreZirconHandleANGLE()
1477 case HandleType::ZirconEvent: in ValidateImportSemaphoreZirconHandleANGLE()
/third_party/skia/third_party/externals/angle2/src/common/
H A DPackedGLEnums_autogen.cpp624 HandleType FromGLenum<HandleType>(GLenum from) in FromGLenum()
629 return HandleType::OpaqueFd; in FromGLenum()
631 return HandleType::ZirconVmo; in FromGLenum()
633 return HandleType::ZirconEvent; in FromGLenum()
635 return HandleType::InvalidEnum; in FromGLenum()
639 GLenum ToGLenum(HandleType from) in ToGLenum()
643 case HandleType::OpaqueFd: in ToGLenum()
645 case HandleType::ZirconVmo: in ToGLenum()
647 case HandleType in ToGLenum()
[all...]
H A DPackedGLEnums_autogen.h173 enum class HandleType : uint8_t class
184 HandleType FromGLenum<HandleType>(GLenum from);
185 GLenum ToGLenum(HandleType from);
186 std::ostream &operator<<(std::ostream &os, HandleType value);
/third_party/node/src/
H A Dtcp_wrap.h65 typedef uv_tcp_t HandleType; typedef in node::TCPWrap
68 int (*F)(const typename T::HandleType*, sockaddr*, int*)>
H A Dudp_wrap.h183 typedef uv_udp_t HandleType; typedef in node::final
186 int (*F)(const typename T::HandleType*, sockaddr*, int*)>
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksSerializerVKSC.hpp99 template <vk::HandleType VKTYPE>
107 template <vk::HandleType VKTYPE>
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkStrUtil.hpp37 template<HandleType Type>
H A DvkDefs.hpp85 // enum HandleType { HANDLE_TYPE_INSTANCE, ... };
88 template<HandleType Type>
110 template<HandleType Type>

Completed in 15 milliseconds

12