/third_party/vulkan-headers/include/vulkan/ |
H A D | vulkan_shared.hpp | 18 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 D | vulkan_platform.h | 83 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 D | MemoryObjectVk.cpp | 62 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 D | MemoryObjectVk.h | 31 gl::HandleType handleType, 36 gl::HandleType handleType, 60 gl::HandleType mHandleType = gl::HandleType::InvalidEnum;
|
H A D | vk_utils.cpp | 800 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 D | SemaphoreVk.cpp | 30 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 D | SemaphoreVk.h | 26 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 D | MemoryObjectImpl.h | 37 gl::HandleType handleType, 41 gl::HandleType handleType,
|
H A D | SemaphoreImpl.h | 33 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 D | SemaphoreGL.h | 24 angle::Result importFd(gl::Context *context, gl::HandleType handleType, GLint fd) override; 27 gl::HandleType handleType,
|
H A D | MemoryObjectGL.h | 29 gl::HandleType handleType, 34 gl::HandleType handleType,
|
H A D | MemoryObjectGL.cpp | 52 gl::HandleType handleType, in importFd() 63 gl::HandleType handleType, in importZirconHandle()
|
H A D | SemaphoreGL.cpp | 63 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 D | Semaphore.h | 40 angle::Result importFd(Context *context, HandleType handleType, GLint fd); 41 angle::Result importZirconHandle(Context *context, HandleType handleType, GLuint handle);
|
H A D | MemoryObject.h | 44 angle::Result importFd(Context *context, GLuint64 size, HandleType handleType, GLint fd); 47 HandleType handleType,
|
H A D | MemoryObject.cpp | 48 HandleType handleType, in importFd() 58 HandleType handleType, in importZirconHandle()
|
H A D | Semaphore.cpp | 28 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 D | validationESEXT.cpp | 1126 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 D | PackedGLEnums_autogen.cpp | 624 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 D | PackedGLEnums_autogen.h | 173 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 D | tcp_wrap.h | 65 typedef uv_tcp_t HandleType; typedef in node::TCPWrap 68 int (*F)(const typename T::HandleType*, sockaddr*, int*)>
|
H A D | udp_wrap.h | 183 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 D | vksSerializerVKSC.hpp | 99 template <vk::HandleType VKTYPE> 107 template <vk::HandleType VKTYPE>
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkStrUtil.hpp | 37 template<HandleType Type>
|
H A D | vkDefs.hpp | 85 // enum HandleType { HANDLE_TYPE_INSTANCE, ... }; 88 template<HandleType Type> 110 template<HandleType Type>
|