Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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();; } }
it's useful for debug
The text was updated successfully, but these errors were encountered:
Good idea.
Sorry, something went wrong.
start of dotnet#2298 override ToString() method for vulkan objects
acbfa03
Silly fixes: fix #2298, fix #2238, fix #2128
8528837
f9535d2
No branches or pull requests
Override ToString() method in Vulkan object structs
it's useful for debug

The text was updated successfully, but these errors were encountered: