mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-13 05:20:45 +00:00
279a2ec69d
* 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.
20 lines
527 B
Python
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
|