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
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:
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: