mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
VertexLoaderBase: Allow the vertex loader type to be set via config
This commit is contained in:
@ -90,6 +90,13 @@ enum class FrameDumpResolutionType : int
|
||||
XFBRawResolution,
|
||||
};
|
||||
|
||||
enum class VertexLoaderType : int
|
||||
{
|
||||
Native,
|
||||
Software,
|
||||
Compare
|
||||
};
|
||||
|
||||
// Bitmask containing information about which configuration has changed for the backend.
|
||||
enum ConfigChangeBits : u32
|
||||
{
|
||||
@ -279,6 +286,9 @@ struct VideoConfig final
|
||||
// Loading custom drivers on Android
|
||||
std::string customDriverLibraryName;
|
||||
|
||||
// Vertex loader
|
||||
VertexLoaderType vertex_loader_type;
|
||||
|
||||
// Static config per API
|
||||
// TODO: Move this out of VideoConfig
|
||||
struct
|
||||
|
Reference in New Issue
Block a user