Texture loading done.

This commit is contained in:
2023-11-25 19:31:16 -06:00
parent 89fe77c07e
commit 94941b1c14
12 changed files with 233 additions and 32 deletions

View File

@ -27,8 +27,8 @@ namespace Dawn {
};
enum class TextureDataFormat {
UNSIGNED_BYTE = 0,
FLOAT = 1
UNSIGNED_BYTE = sizeof(uint8_t),
FLOAT = sizeof(float_t)
};
class ITexture {