mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
Enable VK_Groupshared test
This commit is contained in:
@@ -6,12 +6,6 @@ class Groupshared(rdtest.TestCase):
|
||||
internal = True
|
||||
demos_test_name = None
|
||||
|
||||
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_compute_thread_result(self, test, action, x, y, z, expected):
|
||||
try:
|
||||
workgroup = (0, 0, 0)
|
||||
|
||||
@@ -3,3 +3,9 @@ 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'
|
||||
|
||||
@@ -4,6 +4,12 @@ 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")
|
||||
|
||||
Reference in New Issue
Block a user