Home | History | Annotate | Download | only in vulkan

Lines Matching refs:Parent

58 template<typename Object, typename Handle, typename Parent, typename CreateInfo>
59 Handle allocateHandle (Parent parent, const CreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator)
68 obj = new (mem) Object(parent, pCreateInfo);
78 obj = new Object(parent, pCreateInfo);
122 template<typename Object, typename Handle, typename Parent, typename CreateInfo>
123 Handle allocateNonDispHandle (Parent parent, const CreateInfo* pCreateInfo, const VkAllocationCallbacks* pAllocator)
125 Object* const obj = allocateHandle<Object, Object*>(parent, pCreateInfo, pAllocator);