From cfdbc3da575cf92ab87e432fc4fbaf0bbeec49e2 Mon Sep 17 00:00:00 2001 From: baldurk Date: Tue, 3 May 2022 15:30:39 +0100 Subject: [PATCH] Remove outdated experimental feature check --- util/test/tests/D3D12/D3D12_Descriptor_Indexing.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/util/test/tests/D3D12/D3D12_Descriptor_Indexing.py b/util/test/tests/D3D12/D3D12_Descriptor_Indexing.py index 479e9b085..9be5089f0 100644 --- a/util/test/tests/D3D12/D3D12_Descriptor_Indexing.py +++ b/util/test/tests/D3D12/D3D12_Descriptor_Indexing.py @@ -5,13 +5,6 @@ import renderdoc as rd class D3D12_Descriptor_Indexing(rdtest.TestCase): demos_test_name = 'D3D12_Descriptor_Indexing' - def check_support(self): - cfg = rd.GetConfigSetting("D3D12_Experimental_BindlessFeedback") - if cfg is not None and cfg.AsBool() is False: - return False, 'Bindless feedback is not enabled' - - return super().check_support() - def check_compute(self, eventId): action = self.find_action("Dispatch", eventId) self.check(action is not None)