mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 09:00:44 +00:00
Enable D3D11, D3D12 groupshared, subgroup, workgroup tests
D3D11_Groupshared, D3D12_Groupshared D3D12_Subgroup_Zoo D3D11_Workgroup_Zoo D3D12_Workgroup_Zoo
This commit is contained in:
@@ -2,10 +2,4 @@ import rdtest
|
||||
|
||||
class D3D11_Groupshared(rdtest.Groupshared):
|
||||
internal = False
|
||||
demos_test_name = 'D3D11_Groupshared'
|
||||
|
||||
def check_support(self, **kwargs):
|
||||
# Only allow this if explicitly run
|
||||
if kwargs['test_include'] == self.demos_test_name:
|
||||
return True, ''
|
||||
return False, 'Disabled test'
|
||||
demos_test_name = 'D3D11_Groupshared'
|
||||
@@ -2,11 +2,4 @@ import rdtest
|
||||
|
||||
class D3D11_Workgroup_Zoo(rdtest.Workgroup_Zoo):
|
||||
demos_test_name = 'D3D11_Workgroup_Zoo'
|
||||
internal = False
|
||||
|
||||
def check_support(self, **kwargs):
|
||||
# Only allow this if explicitly run
|
||||
if kwargs['test_include'] == self.demos_test_name:
|
||||
return True, ''
|
||||
return False, 'Disabled test'
|
||||
|
||||
internal = False
|
||||
@@ -4,12 +4,6 @@ class D3D12_Groupshared(rdtest.Groupshared):
|
||||
internal = False
|
||||
demos_test_name = 'D3D12_Groupshared'
|
||||
|
||||
def check_support(self, **kwargs):
|
||||
# Only allow this if explicitly run
|
||||
if kwargs['test_include'] == self.demos_test_name:
|
||||
return True, ''
|
||||
return False, 'Disabled test'
|
||||
|
||||
def check_capture(self):
|
||||
overallFailed = False
|
||||
action = self.find_action("SM5")
|
||||
|
||||
@@ -3,9 +3,3 @@ import rdtest
|
||||
class D3D12_Subgroup_Zoo(rdtest.Subgroup_Zoo):
|
||||
demos_test_name = 'D3D12_Subgroup_Zoo'
|
||||
internal = False
|
||||
|
||||
def check_support(self, **kwargs):
|
||||
# Only allow this if explicitly run
|
||||
if kwargs['test_include'] == self.demos_test_name:
|
||||
return True, ''
|
||||
return False, 'Disabled test'
|
||||
@@ -3,10 +3,3 @@ import rdtest
|
||||
class D3D12_Workgroup_Zoo(rdtest.Workgroup_Zoo):
|
||||
demos_test_name = 'D3D12_Workgroup_Zoo'
|
||||
internal = False
|
||||
|
||||
def check_support(self, **kwargs):
|
||||
# Only allow this if explicitly run
|
||||
if kwargs['test_include'] == self.demos_test_name:
|
||||
return True, ''
|
||||
return False, 'Disabled test'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user