Remove Vulkan pixel history beta feature flag

This commit is contained in:
Aliya Pazylbekova
2020-07-21 12:44:35 -04:00
committed by Baldur Karlsson
parent bf567adea1
commit 109d5e90a9
2 changed files with 1 additions and 8 deletions
@@ -3194,12 +3194,6 @@ rdcarray<PixelModification> VulkanReplay::PixelHistory(rdcarray<EventUsage> even
ResourceId target, uint32_t x, uint32_t y,
const Subresource &sub, CompType typeCast)
{
if(!GetAPIProperties().pixelHistory)
{
VULKANNOTIMP("PixelHistory");
return rdcarray<PixelModification>();
}
rdcarray<PixelModification> history;
if(events.empty())
+1 -2
View File
@@ -44,7 +44,6 @@
RDOC_CONFIG(bool, Vulkan_ShaderDebugging, false,
"BETA: Enable experimental shader debugging support.");
RDOC_CONFIG(bool, Vulkan_PixelHistory, false, "BETA: Enable experimental pixel history support.");
static const char *SPIRVDisassemblyTarget = "SPIR-V (RenderDoc)";
static const char *AMDShaderInfoTarget = "AMD_shader_info";
@@ -192,7 +191,7 @@ APIProperties VulkanReplay::GetAPIProperties()
ret.rgpCapture =
m_DriverInfo.vendor == GPUVendor::AMD && m_RGP != NULL && m_RGP->DriverSupportsInterop();
ret.shaderDebugging = Vulkan_ShaderDebugging();
ret.pixelHistory = Vulkan_PixelHistory();
ret.pixelHistory = true;
return ret;
}