mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 21:07:52 +00:00
texture: Add missing formats.
This commit is contained in:
parent
3ed8a1cac7
commit
9df8e924fb
1 changed files with 3 additions and 1 deletions
|
@ -13,8 +13,10 @@ namespace Tegra {
|
||||||
namespace Texture {
|
namespace Texture {
|
||||||
|
|
||||||
enum class TextureFormat : u32 {
|
enum class TextureFormat : u32 {
|
||||||
A8R8G8B8 = 8,
|
A8R8G8B8 = 0x8,
|
||||||
DXT1 = 0x24,
|
DXT1 = 0x24,
|
||||||
|
DXT23 = 0x25,
|
||||||
|
DXT45 = 0x26,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class TextureType : u32 {
|
enum class TextureType : u32 {
|
||||||
|
|
Loading…
Reference in a new issue