vk_image: Avoid unnecesary equals

master
Rodrigo Locatti 2019-12-30 13:28:23 +07:00 committed by GitHub
parent c83bf7cd1e
commit 4cbb363d3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

@ -51,7 +51,7 @@ public:
private: private:
struct SubrangeState final { struct SubrangeState final {
vk::AccessFlags access = {}; ///< Current access bits. vk::AccessFlags access{}; ///< Current access bits.
vk::ImageLayout layout = vk::ImageLayout::eUndefined; ///< Current image layout. vk::ImageLayout layout = vk::ImageLayout::eUndefined; ///< Current image layout.
}; };