mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
Remove Vulkan pixel history beta feature flag
This commit is contained in:
committed by
Baldur Karlsson
parent
bf567adea1
commit
109d5e90a9
@@ -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())
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user