dx12 upgrade to root signature 1.1

This commit is contained in:
Turanszki Janos
2020-12-22 21:22:10 +01:00
parent 48dec501a2
commit 2dbe4ebbc4
3 changed files with 181 additions and 163 deletions
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -2869,7 +2869,7 @@ void RenderMeshes(
uint32_t stencilRef = CombineStencilrefs(engineStencilRef, userStencilRef);
device->BindStencilRef(stencilRef, cmd);
if (renderPass != RENDERPASS_DEPTHONLY) // depth only alpha test will be full res
if (renderPass != RENDERPASS_DEPTHONLY && renderPass != RENDERPASS_VOXELIZE) // depth only alpha test will be full res
{
device->BindShadingRate(material.shadingRate, cmd);
}
+1 -1
View File
@@ -9,7 +9,7 @@ namespace wiVersion
// minor features, major updates, breaking compatibility changes
const int minor = 51;
// minor bug fixes, alterations, refactors, updates
const int revision = 28;
const int revision = 29;
const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);