-
-
Notifications
You must be signed in to change notification settings - Fork 436
Open
Labels
Milestone
Description
Summary
The generated bindings for vkCmdUpdateBuffer
have the pData
parameter marked as ref
(or Span<T>
for the Span overloads), rather than in
or ReadOnlySpan<T>
. The official documentation for vkCmdUpdateBuffer
has the pData
parameter marked const.
These parameters should be treated like other const
parameters, and take an in
or ReadOnlySpan<T>
argument.
Steps to reproduce
N/A
ryzendew