internal VkImage(UInt64 Handle, VkDevice Parent, VkFormat Format) { _Parent = Parent; _Handle = Handle; _MemoryRequirements = GetImageMemoryRequirements(); _Format = Format; }
internal VkBuffer(VkDevice Parent, UInt64 Handle) { _Handle = Handle; _Parent = Parent; _MemoryRequirements = GetBufferMemoryRequirements(); }