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.
|
2021-03-19 20:07:37 +01:00
|
|
|
|
IntegerSampling = 1 << 0,
|
2021-04-20 12:33:54 +02:00
|
|
|
|
FragCoordXY = 1 << 1,
|
|
|
|
|
|
|
|
|
|
Bindless = 1 << 2,
|
2021-05-19 23:15:26 +02:00
|
|
|
|
InstanceId = 1 << 3,
|
2021-08-27 01:44:47 +02:00
|
|
|
|
CbIndexing = 1 << 4,
|
|
|
|
|
IaIndexing = 1 << 5,
|
|
|
|
|
OaIndexing = 1 << 6
|
2020-07-07 04:41:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|