mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 04:08:55 +00:00
OGL: Convert SupportedESPointSize to an enum class
This commit is contained in:
parent
79b8e136b7
commit
c68d484a65
3 changed files with 20 additions and 8 deletions
|
@ -22,6 +22,14 @@ enum GlslVersion
|
|||
GlslEs310, // GLES 3.1
|
||||
GlslEs320, // GLES 3.2
|
||||
};
|
||||
|
||||
enum class EsPointSizeType
|
||||
{
|
||||
PointSizeNone,
|
||||
PointSizeOes,
|
||||
PointSizeExt,
|
||||
};
|
||||
|
||||
enum class EsTexbufType
|
||||
{
|
||||
TexbufNone,
|
||||
|
@ -51,7 +59,7 @@ struct VideoConfig
|
|||
bool bSupportsAEP;
|
||||
bool bSupportsDebug;
|
||||
bool bSupportsCopySubImage;
|
||||
u8 SupportedESPointSize;
|
||||
EsPointSizeType SupportedESPointSize;
|
||||
EsTexbufType SupportedESTextureBuffer;
|
||||
bool bSupportsTextureStorage;
|
||||
bool bSupports2DTextureStorageMultisample;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue