mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Add DXIL enums for MatrixOrientation, SamplerFeedbackType
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user