2023-04-25 19:51:07 -03:00
|
|
|
namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
|
|
|
|
|
{
|
|
|
|
|
enum StorageKind
|
|
|
|
|
{
|
|
|
|
|
None,
|
|
|
|
|
Input,
|
|
|
|
|
InputPerPatch,
|
|
|
|
|
Output,
|
|
|
|
|
OutputPerPatch,
|
|
|
|
|
ConstantBuffer,
|
|
|
|
|
StorageBuffer,
|
|
|
|
|
LocalMemory,
|
|
|
|
|
SharedMemory,
|
2023-06-15 17:31:53 -03:00
|
|
|
SharedMemory8, // TODO: Remove this and store type as a field on the Operation class itself.
|
|
|
|
|
SharedMemory16, // TODO: Remove this and store type as a field on the Operation class itself.
|
2023-06-03 20:12:18 -03:00
|
|
|
GlobalMemory,
|
2023-06-15 17:31:53 -03:00
|
|
|
GlobalMemoryS8, // TODO: Remove this and store type as a field on the Operation class itself.
|
|
|
|
|
GlobalMemoryS16, // TODO: Remove this and store type as a field on the Operation class itself.
|
|
|
|
|
GlobalMemoryU8, // TODO: Remove this and store type as a field on the Operation class itself.
|
|
|
|
|
GlobalMemoryU16 // TODO: Remove this and store type as a field on the Operation class itself.
|
2023-04-25 19:51:07 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static class StorageKindExtensions
|
|
|
|
|
{
|
|
|
|
|
public static bool IsInputOrOutput(this StorageKind storageKind)
|
|
|
|
|
{
|
|
|
|
|
return storageKind == StorageKind.Input ||
|
|
|
|
|
storageKind == StorageKind.InputPerPatch ||
|
|
|
|
|
storageKind == StorageKind.Output ||
|
|
|
|
|
storageKind == StorageKind.OutputPerPatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsOutput(this StorageKind storageKind)
|
|
|
|
|
{
|
|
|
|
|
return storageKind == StorageKind.Output ||
|
|
|
|
|
storageKind == StorageKind.OutputPerPatch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsPerPatch(this StorageKind storageKind)
|
|
|
|
|
{
|
|
|
|
|
return storageKind == StorageKind.InputPerPatch ||
|
|
|
|
|
storageKind == StorageKind.OutputPerPatch;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|