mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-29 13:20:54 +00:00
14 lines
327 B
Python
14 lines
327 B
Python
import rdtest
|
|
import renderdoc as rd
|
|
|
|
|
|
class VK_Mesh_Zoo(rdtest.TestCase):
|
|
demos_test_name = 'VK_Mesh_Zoo'
|
|
|
|
def __init__(self):
|
|
rdtest.TestCase.__init__(self)
|
|
self.zoo_helper = rdtest.Mesh_Zoo()
|
|
|
|
def check_capture(self):
|
|
self.zoo_helper.check_capture(self.capture_filename, self.controller)
|