This commit is contained in:
Turanszki Janos
2020-07-05 18:51:22 +01:00
parent 1b848231be
commit ea7e7e7d15
2 changed files with 6 additions and 3 deletions
+5 -2
View File
@@ -18,7 +18,7 @@
#pragma comment(lib,"Dxgi.lib")
#pragma comment(lib,"dxguid.lib")
#ifdef _X64
#ifdef _WIN64
#ifndef PLATFORM_UWP
#pragma comment(lib,"dxcompiler.lib")
#endif // PLATFORM_UWP
@@ -2236,7 +2236,7 @@ using namespace DX12_Internal;
assert(SUCCEEDED(hr));
#ifdef _X64 // TODO: Can't use dxcompiler.dll in 32-bit, so can't use shader reflection
#ifdef _WIN64 // TODO: Can't use dxcompiler.dll in 32-bit, so can't use shader reflection
#ifndef PLATFORM_UWP // TODO: Can't use dxcompiler.dll in UWP, so can't use shader reflection
struct ShaderBlob : public IDxcBlob
{
@@ -2547,6 +2547,9 @@ using namespace DX12_Internal;
auto internal_state = to_internal(shader);
if (internal_state->tables.empty())
return;
if (!internal_state->tables.back().resources.empty())
{
params.emplace_back();
+1 -1
View File
@@ -9,7 +9,7 @@ namespace wiVersion
// minor features, major updates, breaking API changes
const int minor = 45;
// minor bug fixes, alterations, refactors, updates
const int revision = 1;
const int revision = 2;
const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);