Files
renderdoc/util/test/tests/GL/GL_DX_Interop.py
T
baldurk a9151a8c0b Add testing framework useful for automated testing
* 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.
2018-11-29 14:47:20 +00:00

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)