Remove TranslatorConfig struct
This commit is contained in:
parent
6a8ba6d600
commit
3ca675223a
7 changed files with 14 additions and 48 deletions
|
@ -8,7 +8,6 @@ namespace Ryujinx.Graphics.Shader
|
|||
|
||||
public TranslationFlags Flags { get; }
|
||||
|
||||
public int MaxCBufferSize { get; }
|
||||
public int MaxOutputVertices { get; }
|
||||
|
||||
public OutputTopology OutputTopology { get; }
|
||||
|
@ -16,13 +15,11 @@ namespace Ryujinx.Graphics.Shader
|
|||
public ShaderConfig(
|
||||
ShaderStage stage,
|
||||
TranslationFlags flags,
|
||||
int maxCBufferSize,
|
||||
int maxOutputVertices,
|
||||
OutputTopology outputTopology)
|
||||
{
|
||||
Stage = stage;
|
||||
Flags = flags;
|
||||
MaxCBufferSize = maxCBufferSize;
|
||||
MaxOutputVertices = maxOutputVertices;
|
||||
OutputTopology = outputTopology;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue