You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 31, 2025. It is now read-only.
There are a number of places where the return value of a function is being used as a parameter of another function that takes a reference.
While MSVC allows passing an r-value into an l-value it is not allowed by the C++ specification.
Additionally the NVK.h wrapper is consuming a number of parameters by non-const reference that the specification for the underlying Vulkan API is consuming by value. Is this intentional?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There are a number of places where the return value of a function is being used as a parameter of another function that takes a reference.
While MSVC allows passing an r-value into an l-value it is not allowed by the C++ specification.
Additionally the NVK.h wrapper is consuming a number of parameters by non-const reference that the specification for the underlying Vulkan API is consuming by value. Is this intentional?
The text was updated successfully, but these errors were encountered: