vulkan_platform: Add a method to get the uint64_t handle

This commit is contained in:
Corentin Wallez 2018-01-26 16:45:46 -05:00 committed by Corentin Wallez
parent 37bead6fa5
commit eb45309722
1 changed files with 4 additions and 0 deletions

View File

@ -63,6 +63,10 @@ class VkNonDispatchableHandle {
return {handle};
}
uint64_t GetHandle() const {
return mHandle;
}
private:
VkNonDispatchableHandle(uint64_t handle) : mHandle(handle) {
}