Fix acronym naming standard

- Now follow standard that acronyms should only capitalize the first
  letter
This commit is contained in:
Thraix
2023-05-22 12:03:51 +02:00
parent 84b24457a0
commit 0cd35928a7
25 changed files with 107 additions and 107 deletions
@@ -10,7 +10,7 @@ namespace Copium
Framebuffer::Framebuffer(const MetaFile& metaFile)
{
const MetaFileClass& metaClass = metaFile.GetMetaClass("Framebuffer");
ColorAttachment& attachment = AssetManager::LoadAsset<ColorAttachment>(UUID{metaClass.GetValue("rendertexture-uuid")});
ColorAttachment& attachment = AssetManager::LoadAsset<ColorAttachment>(Uuid{metaClass.GetValue("rendertexture-uuid")});
colorAttachment = attachment;
width = attachment.GetWidth();
height = attachment.GetHeight();