mirror of
https://github.com/libretro/RetroArch
synced 2025-04-02 07:20:34 +00:00
Fix clang -Wreorder warnings.
gfx/drivers_shader/shader_vulkan.cpp:1109:6: warning: field 'id' will be initialized after field 'device' [-Wreorder] : id(move(id)), ^ gfx/drivers_shader/shader_vulkan.cpp:2107:4: warning: field 'device' will be initialized after field 'memory_properties' [-Wreorder] device(device), ^ 2 warnings generated.
This commit is contained in:
parent
862a4e099b
commit
4bc0aacd8b
@ -1106,12 +1106,12 @@ StaticTexture::StaticTexture(string id,
|
|||||||
bool linear,
|
bool linear,
|
||||||
bool mipmap,
|
bool mipmap,
|
||||||
vulkan_filter_chain_address address)
|
vulkan_filter_chain_address address)
|
||||||
: id(move(id)),
|
: device(device),
|
||||||
device(device),
|
|
||||||
image(image),
|
image(image),
|
||||||
view(view),
|
view(view),
|
||||||
memory(memory),
|
memory(memory),
|
||||||
buffer(move(buffer))
|
buffer(move(buffer)),
|
||||||
|
id(move(id))
|
||||||
{
|
{
|
||||||
texture.filter = linear ? VULKAN_FILTER_CHAIN_LINEAR : VULKAN_FILTER_CHAIN_NEAREST;
|
texture.filter = linear ? VULKAN_FILTER_CHAIN_LINEAR : VULKAN_FILTER_CHAIN_NEAREST;
|
||||||
texture.mip_filter =
|
texture.mip_filter =
|
||||||
@ -2104,8 +2104,8 @@ Framebuffer::Framebuffer(
|
|||||||
const VkPhysicalDeviceMemoryProperties &mem_props,
|
const VkPhysicalDeviceMemoryProperties &mem_props,
|
||||||
const Size2D &max_size, VkFormat format,
|
const Size2D &max_size, VkFormat format,
|
||||||
unsigned max_levels) :
|
unsigned max_levels) :
|
||||||
device(device),
|
|
||||||
memory_properties(mem_props),
|
memory_properties(mem_props),
|
||||||
|
device(device),
|
||||||
size(max_size),
|
size(max_size),
|
||||||
format(format),
|
format(format),
|
||||||
max_levels(max(max_levels, 1u))
|
max_levels(max(max_levels, 1u))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user