PalWorld-NetCrack/SDK/DLSSBlueprint_structs.hpp
2024-01-22 14:43:11 +08:00

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
//---------------------------------------------------------------------------------------------------------------------
}