2020-07-07 02:41:07 +00: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.
|
2021-03-19 19:07:37 +00:00
|
|
|
|
IntegerSampling = 1 << 0,
|
2021-04-20 10:33:54 +00:00
|
|
|
|
FragCoordXY = 1 << 1,
|
|
|
|
|
|
|
|
|
|
Bindless = 1 << 2,
|
2021-05-19 21:15:26 +00:00
|
|
|
|
InstanceId = 1 << 3,
|
2021-09-28 23:55:12 +00:00
|
|
|
|
RtLayer = 1 << 4,
|
|
|
|
|
CbIndexing = 1 << 5,
|
|
|
|
|
IaIndexing = 1 << 6,
|
2021-11-08 16:18:46 +00:00
|
|
|
|
OaIndexing = 1 << 7,
|
|
|
|
|
FixedFuncAttr = 1 << 8
|
2020-07-07 02:41:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|