Skip to content

Commit 6e23e6e

Browse files
author
kevyuu
committed
Fix indentation
1 parent 469bf04 commit 6e23e6e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

include/nbl/asset/ICPUImage.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -195,16 +195,16 @@ class NBL_API2 ICPUImage final : public IImage, public IPreHashed
195195
return true;
196196
}
197197

198-
inline bool valid() const override
199-
{
200-
if (!validateCreationParameters(m_creationParams)) return false;
201-
if (info != m_creationParams.format) return false;
202-
if (buffer && !buffer->valid()) return false;
203-
if (regions)
204-
for (const auto& region : *regions)
205-
if (!region.isValid()) return false;
206-
return true;
207-
}
198+
inline bool valid() const override
199+
{
200+
if (!validateCreationParameters(m_creationParams)) return false;
201+
if (info != m_creationParams.format) return false;
202+
if (buffer && !buffer->valid()) return false;
203+
if (regions)
204+
for (const auto& region : *regions)
205+
if (!region.isValid()) return false;
206+
return true;
207+
}
208208

209209
protected:
210210
inline ICPUImage(const SCreationParams& _params) : IImage(_params) {}

0 commit comments

Comments
 (0)