mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-22 17:10:19 +00:00
16 lines
499 B
C#
16 lines
499 B
C#
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
struct HardwareCapabilities
|
|
{
|
|
public bool SupportsConditionalRendering { get; }
|
|
public bool SupportsExtendedDynamicState { get; }
|
|
|
|
public HardwareCapabilities(
|
|
bool supportsConditionalRendering,
|
|
bool supportsExtendedDynamicState)
|
|
{
|
|
SupportsConditionalRendering = supportsConditionalRendering;
|
|
SupportsExtendedDynamicState = supportsExtendedDynamicState;
|
|
}
|
|
}
|
|
}
|