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
+6
View File
@@ -192,6 +192,11 @@ There have been many people who have helped in the creation of RenderDoc. Whethe
* Alex Kharlamov
* Steve Karolewics
* Kevin McCullough
* Ting Cai
* Zi Ming He
* Orson Baines
* John Kattukudiyil
* Tony Tascioglu
Contributors
------------
@@ -206,3 +211,4 @@ The following list highlights notable open source contributions. Many other peop
* Balazs Torok - Implemented the RenderDoc in-application overlay for D3D9.
* Steve Karolewics - Implemented DXBC shader debugging support for D3D12.
* Aliya Pazylbekova - Implemented pixel history support for Vulkan.
* Orson Baines, Zi Ming He, John Kattukudiyil, Ting Cai, Tony Tascioglu - Implemented pixel history support for OpenGL.
+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;
}