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-03-19 19:07:37 +00:00
|
|
|
|
|
2021-04-20 10:33:54 +00:00
|
|
|
|
InstanceId = 1 << 3
|
2020-07-07 02:41:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|