Files
renderdoc/util/test/tests/GL/GL_Texture_Zoo.py
T
baldurk 2a0989ba9a Use local helper function for setting current EID
* This lets the testcase track the current EID and print it when a failure
  happens
2026-09-11 19:19:27 +01:00

18 lines
542 B
Python

import rdtest
class GL_Texture_Zoo(rdtest.TestCase):
slow_test = True
demos_test_name = 'GL_Texture_Zoo'
def __init__(self):
rdtest.TestCase.__init__(self)
self.zoo_helper = rdtest.Texture_Zoo()
def check_capture(self):
assert self.controller is not None
# This takes ownership of the controller and shuts it down when it's finished
self.zoo_helper.worker_thread = self.worker_thread
self.zoo_helper.check_capture(self.capture_filename, self)
self.controller = None