vk_image: Avoid unnecesary equals

This commit is contained in:
Rodrigo Locatti 2019-12-30 13:28:23 -03:00 committed by GitHub
parent c83bf7cd1e
commit 4cbb363d3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.
}; };