mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-12 04:22:15 +00:00
Video Backends: Move and rename HostTextureFormat to AbstractTextureFormat
This commit is contained in:
parent
2cdc93f4ab
commit
e4896d39bd
14 changed files with 54 additions and 55 deletions
|
@ -9,7 +9,7 @@
|
|||
#include <vector>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "VideoCommon/VideoCommon.h"
|
||||
#include "VideoCommon/TextureConfig.h"
|
||||
|
||||
class HiresTexture
|
||||
{
|
||||
|
@ -32,13 +32,13 @@ public:
|
|||
|
||||
~HiresTexture();
|
||||
|
||||
HostTextureFormat GetFormat() const;
|
||||
AbstractTextureFormat GetFormat() const;
|
||||
struct Level
|
||||
{
|
||||
Level();
|
||||
|
||||
ImageDataPointer data;
|
||||
HostTextureFormat format = HostTextureFormat::RGBA8;
|
||||
AbstractTextureFormat format = AbstractTextureFormat::RGBA8;
|
||||
u32 width = 0;
|
||||
u32 height = 0;
|
||||
u32 row_length = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue