Lines Matching refs:DeviceData
54 struct DeviceData { struct
84 struct DeviceData { struct
85 DeviceData(const VkAllocationCallbacks& alloc, in DeviceData() argument
92 api::DeviceData opaque_api_data; argument
184 inline bool SetData(VkDevice dev, const DeviceData& data) { in SetData()
188 inline bool SetData(VkQueue queue, const DeviceData& data) { in SetData()
192 inline bool SetData(VkCommandBuffer cmd, const DeviceData& data) { in SetData()
196 inline bool SetData(DeviceDispatchable dispatchable, const DeviceData& data) { in SetData()
212 inline DeviceData& GetData(VkDevice dev) { in GetData()
213 return *reinterpret_cast<DeviceData*>(GetDataInternal(dev)); in GetData()
216 inline DeviceData& GetData(VkQueue queue) { in GetData()
217 return *reinterpret_cast<DeviceData*>(GetDataInternal(queue)); in GetData()
220 inline DeviceData& GetData(VkCommandBuffer cmd) { in GetData()
221 return *reinterpret_cast<DeviceData*>(GetDataInternal(cmd)); in GetData()
224 inline DeviceData& GetData(DeviceDispatchable dispatchable) { in GetData()
225 return *reinterpret_cast<DeviceData*>(GetDataInternal(dispatchable)); in GetData()