Trying to fix other passes

This commit is contained in:
2023-11-11 13:56:12 +01:00
parent 91555fcec3
commit 4c05886d38
24 changed files with 5792 additions and 93 deletions
+7
View File
@@ -18,7 +18,14 @@ public:
{
return texture;
}
const Array<uint8>& getRawPixels()
{
return rawPixels;
}
uint32 getWidth();
uint32 getHeight();
private:
Array<uint8> rawPixels;
Gfx::OTexture texture;
friend class TextureLoader;
};