Files
renderdoc/util/test/tests/Vulkan/VK_Texture_Zoo.py
T
baldurk 279a2ec69d Add texture zoo tests
* These tests ensure that texture rendering works correctly for all different
  types of texture types, and for all formats, across different APIs, including
  across a remote-proxy connection.
2019-11-26 17:38:27 +00:00

20 lines
527 B
Python

import renderdoc as rd
import rdtest
from typing import List, Tuple
import time
import os
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