mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
OGL: Convert SupportedESPointSize to an enum class
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user