Add DXIL enums for MatrixOrientation, SamplerFeedbackType

This commit is contained in:
Jake Turner
2024-04-18 16:09:58 +01:00
parent 9b88a7e933
commit 22b0d53c42
@@ -124,6 +124,21 @@ enum class ResField
SamplerTags = 7,
};
enum class MatrixOrientation
{
Undefined = 0,
RowMajor,
ColumnMajor,
LastEntry
};
enum class SamplerFeedbackType : uint8_t
{
MinMip = 0,
MipRegionUsed = 1,
LastEntry = 2
};
}; // namespace DXIL
DECLARE_STRINGISE_TYPE(DXIL::ComponentType);