You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
50 lines
1.7 KiB
namespace FidelityFX
|
|
{
|
|
internal static class CacaoConsts
|
|
{
|
|
// Prepare
|
|
public const int PrepareDepthsAndMipsWidth = 8;
|
|
public const int PrepareDepthsAndMipsHeight = 8;
|
|
|
|
public const int PrepareDepthsWidth = 8;
|
|
public const int PrepareDepthsHeight = 8;
|
|
|
|
public const int PrepareDepthsHalfWidth = 8;
|
|
public const int PrepareDepthsHalfHeight = 8;
|
|
|
|
public const int PrepareNormalsWidth = 8;
|
|
public const int PrepareNormalsHeight = 8;
|
|
|
|
public const int PrepareNormalsFromInputNormalsWidth = 8;
|
|
public const int PrepareNormalsFromInputNormalsHeight = 8;
|
|
|
|
// SSAO Generation
|
|
public const int GenerateSparseWidth = 4;
|
|
public const int GenerateSparseHeight = 8; // HACK: changed this from 16 to 8, fixes Low-Medium quality generating SSAO for only half the image
|
|
|
|
public const int GenerateWidth = 8;
|
|
public const int GenerateHeight = 8;
|
|
|
|
// Importance Map
|
|
public const int ImportanceMapWidth = 8;
|
|
public const int ImportanceMapHeight = 8;
|
|
|
|
public const int ImportanceMapAWidth = 8;
|
|
public const int ImportanceMapAHeight = 8;
|
|
|
|
public const int ImportanceMapBWidth = 8;
|
|
public const int ImportanceMapBHeight = 8;
|
|
|
|
// Edge Sensitive Blur
|
|
public const int BlurWidth = 16;
|
|
public const int BlurHeight = 16;
|
|
|
|
// Apply
|
|
public const int ApplyWidth = 8;
|
|
public const int ApplyHeight = 8;
|
|
|
|
// Bilateral Upscale
|
|
public const int BilateralUpscaleWidth = 8;
|
|
public const int BilateralUpscaleHeight = 8;
|
|
}
|
|
}
|