Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HansKristian-Work/dxil-spirv.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Rebohle <philip.rebohle@tu-dortmund.de>2022-02-02 19:33:50 +0300
committerPhilip Rebohle <philip.rebohle@tu-dortmund.de>2022-09-02 00:02:17 +0300
commitff88363d2b9b3a7151f4caeb01fe334a734dfd91 (patch)
treef5e34827bb36ff08f6e2f2f3cf90d39291c3c13c
parent986f6827bc30a8ec7c2e2b972219eafa4dca306c (diff)
Add MeshOutputTopology enum.
-rw-r--r--dxil.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/dxil.hpp b/dxil.hpp
index aa05129..413a4f5 100644
--- a/dxil.hpp
+++ b/dxil.hpp
@@ -554,6 +554,13 @@ enum class TessellatorPartitioning : uint8_t
FractionalEven = 4
};
+enum class MeshOutputTopology
+{
+ Undefined = 0,
+ Line = 1,
+ Triangle = 2
+};
+
enum ShaderFlag
{
ShaderFlagEarlyDepthStencil = 1 << 3,
@@ -609,4 +616,5 @@ enum class ShaderKind
Amplification,
Invalid
};
+
} // namespace DXIL