Revert "Implement support for GPU-side constant buffer updating"

This reverts commit d79635772f.
This commit is contained in:
Billy Laws
2022-04-17 16:03:27 +01:00
parent 7bf3580031
commit 5c3559e888
3 changed files with 8 additions and 20 deletions

View File

@ -171,9 +171,8 @@ namespace skyline::gpu {
/**
* @brief Writes data at the specified offset in the buffer
* @param skipCleanHostWrite Skip writing to the host buffer if it's clean, assumes the buffer data will be synchronised externally
*/
void Write(span<u8> data, vk::DeviceSize offset, bool skipCleanHostWrite = false);
void Write(span<u8> data, vk::DeviceSize offset);
/**
* @return A cached or newly created view into this buffer with the supplied attributes
@ -251,8 +250,7 @@ namespace skyline::gpu {
/**
* @brief Writes data at the specified offset in the view
* @note The view **must** be locked prior to calling this
* @param skipCleanHostWrite Skip writing to the host buffer if it's clean, assumes the buffer data will be synchronised externally
*/
void Write(span<u8> data, vk::DeviceSize offset, bool skipCleanHostWrite = false) const;
void Write(span<u8> data, vk::DeviceSize offset) const;
};
}