mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-18 14:26:42 +00:00
Sleep Deprivation
This commit is contained in:
parent
985c648860
commit
966c5d463c
1 changed files with 1 additions and 10 deletions
|
@ -436,18 +436,9 @@ namespace Ryujinx.Graphics.Vulkan
|
||||||
var inputAssemblyState = new PipelineInputAssemblyStateCreateInfo
|
var inputAssemblyState = new PipelineInputAssemblyStateCreateInfo
|
||||||
{
|
{
|
||||||
SType = StructureType.PipelineInputAssemblyStateCreateInfo,
|
SType = StructureType.PipelineInputAssemblyStateCreateInfo,
|
||||||
Topology = Topology,
|
Topology = supportsExtDynamicState ? TopologyClass : Topology,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (supportsExtDynamicState)
|
|
||||||
{
|
|
||||||
inputAssemblyState.Topology = TopologyClass;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
inputAssemblyState.Topology = Topology;
|
|
||||||
}
|
|
||||||
|
|
||||||
var tessellationState = new PipelineTessellationStateCreateInfo
|
var tessellationState = new PipelineTessellationStateCreateInfo
|
||||||
{
|
{
|
||||||
SType = StructureType.PipelineTessellationStateCreateInfo,
|
SType = StructureType.PipelineTessellationStateCreateInfo,
|
||||||
|
|
Loading…
Reference in a new issue