|
@@ -5,6 +5,7 @@ namespace Ryujinx.Graphics.GAL
|
|
|
public bool SupportsAstcCompression { get; }
|
|
public bool SupportsAstcCompression { get; }
|
|
|
public bool SupportsImageLoadFormatted { get; }
|
|
public bool SupportsImageLoadFormatted { get; }
|
|
|
public bool SupportsNonConstantTextureOffset { get; }
|
|
public bool SupportsNonConstantTextureOffset { get; }
|
|
|
|
|
+ public bool SupportsMismatchingViewFormat { get; }
|
|
|
public bool SupportsViewportSwizzle { get; }
|
|
public bool SupportsViewportSwizzle { get; }
|
|
|
|
|
|
|
|
public int MaximumComputeSharedMemorySize { get; }
|
|
public int MaximumComputeSharedMemorySize { get; }
|
|
@@ -15,6 +16,7 @@ namespace Ryujinx.Graphics.GAL
|
|
|
bool supportsAstcCompression,
|
|
bool supportsAstcCompression,
|
|
|
bool supportsImageLoadFormatted,
|
|
bool supportsImageLoadFormatted,
|
|
|
bool supportsNonConstantTextureOffset,
|
|
bool supportsNonConstantTextureOffset,
|
|
|
|
|
+ bool supportsMismatchingViewFormat,
|
|
|
bool supportsViewportSwizzle,
|
|
bool supportsViewportSwizzle,
|
|
|
int maximumComputeSharedMemorySize,
|
|
int maximumComputeSharedMemorySize,
|
|
|
float maximumSupportedAnisotropy,
|
|
float maximumSupportedAnisotropy,
|
|
@@ -23,6 +25,7 @@ namespace Ryujinx.Graphics.GAL
|
|
|
SupportsAstcCompression = supportsAstcCompression;
|
|
SupportsAstcCompression = supportsAstcCompression;
|
|
|
SupportsImageLoadFormatted = supportsImageLoadFormatted;
|
|
SupportsImageLoadFormatted = supportsImageLoadFormatted;
|
|
|
SupportsNonConstantTextureOffset = supportsNonConstantTextureOffset;
|
|
SupportsNonConstantTextureOffset = supportsNonConstantTextureOffset;
|
|
|
|
|
+ SupportsMismatchingViewFormat = supportsMismatchingViewFormat;
|
|
|
SupportsViewportSwizzle = supportsViewportSwizzle;
|
|
SupportsViewportSwizzle = supportsViewportSwizzle;
|
|
|
MaximumComputeSharedMemorySize = maximumComputeSharedMemorySize;
|
|
MaximumComputeSharedMemorySize = maximumComputeSharedMemorySize;
|
|
|
MaximumSupportedAnisotropy = maximumSupportedAnisotropy;
|
|
MaximumSupportedAnisotropy = maximumSupportedAnisotropy;
|