2020-07-07 04:41:07 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Shader.Translation
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Features used by the shader that are important for the code generator to know in advance.
|
|
|
|
|
/// These typically change the declarations in the shader header.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Flags]
|
|
|
|
|
public enum FeatureFlags
|
|
|
|
|
{
|
|
|
|
|
None = 0,
|
|
|
|
|
|
|
|
|
|
// Affected by resolution scaling.
|
2023-06-28 08:59:13 +02:00
|
|
|
|
FragCoordXY = 1 << 1,
|
2021-04-20 12:33:54 +02:00
|
|
|
|
|
|
|
|
|
Bindless = 1 << 2,
|
2021-05-19 23:15:26 +02:00
|
|
|
|
InstanceId = 1 << 3,
|
2022-11-16 18:53:04 +01:00
|
|
|
|
DrawParameters = 1 << 4,
|
|
|
|
|
RtLayer = 1 << 5,
|
2023-08-17 02:31:07 +02:00
|
|
|
|
Shuffle = 1 << 6,
|
2023-06-17 21:28:27 +02:00
|
|
|
|
FixedFuncAttr = 1 << 9,
|
|
|
|
|
LocalMemory = 1 << 10,
|
2023-06-28 08:59:13 +02:00
|
|
|
|
SharedMemory = 1 << 11,
|
2020-07-07 04:41:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|