mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
#pragma once
|
|
|
|
// Dumped with Dumper-7!
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// ENUMS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
enum class EUDLSSSupport : uint8
|
|
{
|
|
Supported = 0,
|
|
NotSupported = 1,
|
|
NotSupportedIncompatibleHardware = 2,
|
|
NotSupportedDriverOutOfDate = 3,
|
|
NotSupportedOperatingSystemOutOfDate = 4,
|
|
NotSupportedByPlatformAtBuildTime = 5,
|
|
NotSupportedIncompatibleAPICaptureToolActive = 6,
|
|
UDLSSSupport_MAX = 7,
|
|
};
|
|
|
|
enum class EUDLSSMode : uint8
|
|
{
|
|
Off = 0,
|
|
Auto = 1,
|
|
DLAA = 2,
|
|
UltraQuality = 3,
|
|
Quality = 4,
|
|
Balanced = 5,
|
|
Performance = 6,
|
|
UltraPerformance = 7,
|
|
UDLSSMode_MAX = 8,
|
|
};
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// STRUCTS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
}
|
|
|
|
|