mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 11:28:33 +00:00
de3134adbe
The only guarantee of the occlusion query type in Vulkan is that it will be zero when no samples pass, and non-zero when any samples pass. Of course, most GPUs implement this by just placing the # of samples in the result and calling it a day. However, this lax restriction means that GPUs could just report a boolean (1/0) or report a value after one is recorded, but before all samples have been counted. MoltenVK falls in the first category - by default it only reports 1/0 for occlusion queries. Thankfully, there is a feature and flag that you can use to force compatible drivers to provide a "precise" query result, that being the real # of samples passed. Should fix ink collision in Splatoon 2/3 on MoltenVK.
89 lines
3.8 KiB
C#
89 lines
3.8 KiB
C#
using Silk.NET.Vulkan;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
[Flags]
|
|
enum PortabilitySubsetFlags
|
|
{
|
|
None = 0,
|
|
|
|
VertexBufferAlignment4B = 1,
|
|
NoTriangleFans = 1 << 1,
|
|
NoPointMode = 1 << 2,
|
|
No3DImageView = 1 << 3,
|
|
NoLodBias = 1 << 4
|
|
}
|
|
|
|
readonly struct HardwareCapabilities
|
|
{
|
|
public readonly bool SupportsIndexTypeUint8;
|
|
public readonly bool SupportsCustomBorderColor;
|
|
public readonly bool SupportsIndirectParameters;
|
|
public readonly bool SupportsFragmentShaderInterlock;
|
|
public readonly bool SupportsGeometryShaderPassthrough;
|
|
public readonly bool SupportsSubgroupSizeControl;
|
|
public readonly bool SupportsShaderInt8;
|
|
public readonly bool SupportsConditionalRendering;
|
|
public readonly bool SupportsExtendedDynamicState;
|
|
public readonly bool SupportsMultiView;
|
|
public readonly bool SupportsNullDescriptors;
|
|
public readonly bool SupportsPreciseOcclusionQueries;
|
|
public readonly bool SupportsPushDescriptors;
|
|
public readonly bool SupportsTransformFeedback;
|
|
public readonly bool SupportsTransformFeedbackQueries;
|
|
public readonly bool SupportsGeometryShader;
|
|
public readonly uint MinSubgroupSize;
|
|
public readonly uint MaxSubgroupSize;
|
|
public readonly ShaderStageFlags RequiredSubgroupSizeStages;
|
|
public readonly SampleCountFlags SupportedSampleCounts;
|
|
public readonly PortabilitySubsetFlags PortabilitySubset;
|
|
|
|
public HardwareCapabilities(
|
|
bool supportsIndexTypeUint8,
|
|
bool supportsCustomBorderColor,
|
|
bool supportsIndirectParameters,
|
|
bool supportsFragmentShaderInterlock,
|
|
bool supportsGeometryShaderPassthrough,
|
|
bool supportsSubgroupSizeControl,
|
|
bool supportsShaderInt8,
|
|
bool supportsConditionalRendering,
|
|
bool supportsExtendedDynamicState,
|
|
bool supportsMultiView,
|
|
bool supportsNullDescriptors,
|
|
bool supportsPushDescriptors,
|
|
bool supportsTransformFeedback,
|
|
bool supportsTransformFeedbackQueries,
|
|
bool supportsPreciseOcclusionQueries,
|
|
bool supportsGeometryShader,
|
|
uint minSubgroupSize,
|
|
uint maxSubgroupSize,
|
|
ShaderStageFlags requiredSubgroupSizeStages,
|
|
SampleCountFlags supportedSampleCounts,
|
|
PortabilitySubsetFlags portabilitySubset)
|
|
{
|
|
SupportsIndexTypeUint8 = supportsIndexTypeUint8;
|
|
SupportsCustomBorderColor = supportsCustomBorderColor;
|
|
SupportsIndirectParameters = supportsIndirectParameters;
|
|
SupportsFragmentShaderInterlock = supportsFragmentShaderInterlock;
|
|
SupportsGeometryShaderPassthrough = supportsGeometryShaderPassthrough;
|
|
SupportsSubgroupSizeControl = supportsSubgroupSizeControl;
|
|
SupportsShaderInt8 = supportsShaderInt8;
|
|
SupportsConditionalRendering = supportsConditionalRendering;
|
|
SupportsExtendedDynamicState = supportsExtendedDynamicState;
|
|
SupportsMultiView = supportsMultiView;
|
|
SupportsNullDescriptors = supportsNullDescriptors;
|
|
SupportsPushDescriptors = supportsPushDescriptors;
|
|
SupportsTransformFeedback = supportsTransformFeedback;
|
|
SupportsTransformFeedbackQueries = supportsTransformFeedbackQueries;
|
|
SupportsPreciseOcclusionQueries = supportsPreciseOcclusionQueries;
|
|
SupportsGeometryShader = supportsGeometryShader;
|
|
MinSubgroupSize = minSubgroupSize;
|
|
MaxSubgroupSize = maxSubgroupSize;
|
|
RequiredSubgroupSizeStages = requiredSubgroupSizeStages;
|
|
SupportedSampleCounts = supportedSampleCounts;
|
|
PortabilitySubset = portabilitySubset;
|
|
}
|
|
}
|
|
}
|