Closed
Description
Override ToString() method in Vulkan object structs
[NativeName("Name", "VkSemaphore")]
public struct Semaphore
{
[NativeName("Type", "")]
[NativeName("Type.Name", "")]
[NativeName("Name", "")]
public ulong Handle;
public Semaphore(ulong? handle = null)
{
this = default(Semaphore);
if (handle.HasValue)
{
Handle = handle.Value;
}
}
public override string ToString()
{
return Handle.ToString();;
}
}
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done