15
15
16
16
namespace wrapper ::directx12::extensions
17
17
{
18
+ enum class dxc_compile_option : uint32
19
+ {
20
+ none = 0 ,
21
+ debug = (1 << 0 ),
22
+ hlsl2021 = (1 << 1 )
23
+ };
24
+
25
+ inline dxc_compile_option operator |(dxc_compile_option lhs, dxc_compile_option rhs)
26
+ {
27
+ return static_cast <dxc_compile_option>(static_cast <uint32>(lhs) | static_cast <uint32>(rhs));
28
+ }
29
+
30
+ inline dxc_compile_option operator &(dxc_compile_option lhs, dxc_compile_option rhs)
31
+ {
32
+ return static_cast <dxc_compile_option>(static_cast <uint32>(lhs) & static_cast <uint32>(rhs));
33
+ }
34
+
35
+ inline std::vector<const wchar_t *> build_compile_arguments_from_compile_option (dxc_compile_option compile_option)
36
+ {
37
+ std::vector<const wchar_t *> arguments;
38
+
39
+ if ((compile_option & dxc_compile_option::debug) != dxc_compile_option::none)
40
+ {
41
+ arguments.push_back (L" -Od" );
42
+ }
43
+
44
+ if ((compile_option & dxc_compile_option::hlsl2021) != dxc_compile_option::none)
45
+ {
46
+ arguments.push_back (L" -HV 2021" );
47
+ }
48
+
49
+ return arguments;
50
+ }
18
51
19
- inline shader_code compile_from_source_using_dxc (const std::string& source, const std::wstring& filename,
20
- const std::wstring& entry, const std::wstring& version, const std::vector<std::pair<std::wstring, std::wstring>>& macros = {})
52
+ inline shader_code compile_from_source_using_dxc (
53
+ const std::string& source, const std::wstring& filename,
54
+ const std::wstring& entry, const std::wstring& version,
55
+ const dxc_compile_option& compile_option = dxc_compile_option::none,
56
+ const std::vector<std::pair<std::wstring, std::wstring>>& macros = {})
21
57
{
22
58
ComPtr<IDxcIncludeHandler> include;
23
59
ComPtr<IDxcCompiler> compiler;
@@ -42,11 +78,7 @@ namespace wrapper::directx12::extensions
42
78
for (const auto & macro : macros)
43
79
defines.push_back ({ macro.first .c_str (), macro.second .c_str () });
44
80
45
- std::vector<const wchar_t *> arguments = {
46
- #ifdef _DEBUG
47
- L" -Od"
48
- #endif
49
- };
81
+ std::vector<const wchar_t *> arguments = build_compile_arguments_from_compile_option (compile_option);
50
82
51
83
compiler->Compile (encoding_blob.Get (), filename.c_str (), entry.c_str (),
52
84
version.c_str (), arguments.data (), static_cast <uint32>(arguments.size ()),
@@ -77,7 +109,9 @@ namespace wrapper::directx12::extensions
77
109
}
78
110
79
111
inline shader_code compile_from_source_using_dxc (const std::string& source, const std::string& filename,
80
- const std::string& entry, const std::string& version, const std::vector<std::pair<std::string, std::string>>& macros = {})
112
+ const std::string& entry, const std::string& version,
113
+ const dxc_compile_option& compile_option = dxc_compile_option::none,
114
+ const std::vector<std::pair<std::string, std::string>>& macros = {})
81
115
{
82
116
std::vector<std::pair<std::wstring, std::wstring>> wmacros = {};
83
117
@@ -92,12 +126,15 @@ namespace wrapper::directx12::extensions
92
126
multi_bytes_string_to_wide_string (filename),
93
127
multi_bytes_string_to_wide_string (entry),
94
128
multi_bytes_string_to_wide_string (version),
129
+ compile_option,
95
130
wmacros
96
131
);
97
132
}
98
133
99
- inline shader_code compile_from_file_using_dxc (const std::wstring& filename, const std::wstring& entry,
100
- const std::wstring& version, const std::vector<std::pair<std::wstring, std::wstring>>& macros = {})
134
+ inline shader_code compile_from_file_using_dxc (
135
+ const std::wstring& filename, const std::wstring& entry, const std::wstring& version,
136
+ const dxc_compile_option& compile_option = dxc_compile_option::none,
137
+ const std::vector<std::pair<std::wstring, std::wstring>>& macros = {})
101
138
{
102
139
ComPtr<IDxcIncludeHandler> include;
103
140
ComPtr<IDxcCompiler> compiler;
@@ -121,11 +158,7 @@ namespace wrapper::directx12::extensions
121
158
for (const auto & macro : macros)
122
159
defines.push_back ({ macro.first .c_str (), macro.second .c_str () });
123
160
124
- std::vector<const wchar_t *> arguments = {
125
- #ifdef _DEBUG
126
- L" -Od"
127
- #endif
128
- };
161
+ std::vector<const wchar_t *> arguments = build_compile_arguments_from_compile_option (compile_option);
129
162
130
163
compiler->Compile (encoding_blob.Get (), filename.c_str (), entry.c_str (),
131
164
version.c_str (), arguments.data (), static_cast <uint32>(arguments.size ()),
@@ -157,8 +190,10 @@ namespace wrapper::directx12::extensions
157
190
return shader_code (code);
158
191
}
159
192
160
- inline shader_code compile_from_file_using_dxc (const std::string& filename, const std::string& entry,
161
- const std::string& version, const std::vector<std::pair<std::string, std::string>>& macros = {})
193
+ inline shader_code compile_from_file_using_dxc (
194
+ const std::string& filename, const std::string& entry, const std::string& version,
195
+ const dxc_compile_option& compile_option = dxc_compile_option::none,
196
+ const std::vector<std::pair<std::string, std::string>>& macros = {})
162
197
{
163
198
std::vector<std::pair<std::wstring, std::wstring>> wmacros = {};
164
199
@@ -172,6 +207,7 @@ namespace wrapper::directx12::extensions
172
207
multi_bytes_string_to_wide_string (filename),
173
208
multi_bytes_string_to_wide_string (entry),
174
209
multi_bytes_string_to_wide_string (version),
210
+ compile_option,
175
211
wmacros
176
212
);
177
213
}
0 commit comments