mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 09:00:44 +00:00
16 lines
451 B
Python
16 lines
451 B
Python
import rdtest
|
|
|
|
|
|
class VK_Texture_Zoo(rdtest.TestCase):
|
|
slow_test = True
|
|
demos_test_name = 'VK_Texture_Zoo'
|
|
|
|
def __init__(self):
|
|
rdtest.TestCase.__init__(self)
|
|
self.zoo_helper = rdtest.Texture_Zoo()
|
|
|
|
def check_capture(self):
|
|
# This takes ownership of the controller and shuts it down when it's finished
|
|
self.zoo_helper.check_capture(self.capture_filename, self.controller)
|
|
self.controller = None
|