mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-07-09 17:17:11 +00:00
a9151a8c0b
* Built entirely independently of the main renderdoc build (for now). * Contains python scripts & framework for running tests on a renderdoc build, which will be run nightly.
15 lines
292 B
Python
15 lines
292 B
Python
import rdtest
|
|
|
|
|
|
class GL_DX_Interop(rdtest.TestCase):
|
|
platform = 'win32'
|
|
|
|
def get_capture(self):
|
|
return rdtest.run_and_capture("demos_x64", "DX_Interop", 7)
|
|
|
|
def check_capture(self):
|
|
self.check_final_backbuffer()
|
|
|
|
self.check_export(self.capture_filename)
|
|
|