mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-22 13:27:52 -05:00
video_core: Amend constructor initializer list order where applicable
Specifies the members in the same order that initialization would take place in. This also silences -Wreorder warnings.
This commit is contained in:
@ -19,8 +19,8 @@ namespace Vulkan {
|
||||
|
||||
CachedBufferEntry::CachedBufferEntry(VAddr cpu_addr, std::size_t size, u64 offset,
|
||||
std::size_t alignment, u8* host_ptr)
|
||||
: cpu_addr{cpu_addr}, size{size}, offset{offset}, alignment{alignment}, RasterizerCacheObject{
|
||||
host_ptr} {}
|
||||
: RasterizerCacheObject{host_ptr}, cpu_addr{cpu_addr}, size{size}, offset{offset},
|
||||
alignment{alignment} {}
|
||||
|
||||
VKBufferCache::VKBufferCache(Tegra::MemoryManager& tegra_memory_manager,
|
||||
VideoCore::RasterizerInterface& rasterizer, const VKDevice& device,
|
||||
|
Reference in New Issue
Block a user