summaryrefslogtreecommitdiffstats
path: root/src/libs/dxvk-native-1.9.2a/src/dxso/dxso_ctab.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/libs/dxvk-native-1.9.2a/src/dxso/dxso_ctab.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/libs/dxvk-native-1.9.2a/src/dxso/dxso_ctab.h b/src/libs/dxvk-native-1.9.2a/src/dxso/dxso_ctab.h
new file mode 100644
index 00000000..56f4f945
--- /dev/null
+++ b/src/libs/dxvk-native-1.9.2a/src/dxso/dxso_ctab.h
@@ -0,0 +1,32 @@
+#pragma once
+
+#include "dxso_common.h"
+
+#include "dxso_reader.h"
+
+namespace dxvk {
+
+ /**
+ * \brief DXSO CTAB
+ *
+ * Stores meta information about the shader
+ */
+ class DxsoCtab : public RcObject {
+
+ public:
+
+ DxsoCtab(DxsoReader& reader, uint32_t commentTokenCount);
+
+ private:
+
+ uint32_t m_size;
+ uint32_t m_creator;
+ uint32_t m_version;
+ uint32_t m_constants;
+ uint32_t m_constantInfo;
+ uint32_t m_flags;
+ uint32_t m_target;
+
+ };
+
+} \ No newline at end of file