mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
AbstractTexture: Support BGRA8 formats
Used for some driver's swap chains, and EFB to RAM.
This commit is contained in:
parent
49a9c33bd7
commit
a584ccc7d8
5 changed files with 36 additions and 5 deletions
|
@ -13,10 +13,12 @@
|
|||
enum class AbstractTextureFormat : u32
|
||||
{
|
||||
RGBA8,
|
||||
BGRA8,
|
||||
DXT1,
|
||||
DXT3,
|
||||
DXT5,
|
||||
BPTC
|
||||
BPTC,
|
||||
Undefined
|
||||
};
|
||||
|
||||
struct TextureConfig
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue