Remove feature toggle for OpenGL Pixel History

This commit is contained in:
Orson Baines
2023-02-25 10:52:53 +00:00
committed by Baldur Karlsson
parent 52e9404961
commit c8b011344d
2 changed files with 7 additions and 2 deletions
+1 -2
View File
@@ -43,7 +43,6 @@
RDOC_CONFIG(bool, OpenGL_HardwareCounters, true,
"Enable support for IHV-specific hardware counters on OpenGL.");
RDOC_CONFIG(bool, OpenGL_PixelHistory, false, "Enable Pixel History on OpenGL (WIP).");
static const char *SPIRVDisassemblyTarget = "SPIR-V (RenderDoc)";
@@ -224,7 +223,7 @@ APIProperties GLReplay::GetAPIProperties()
ret.degraded = m_Degraded;
ret.vendor = m_DriverInfo.vendor;
ret.shadersMutable = true;
ret.pixelHistory = OpenGL_PixelHistory();
ret.pixelHistory = true;
return ret;
}