mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-18 19:55:54 +00:00
* These come from long ago when using PyCharm with not as good type checking and with renderdoc module stubs that were incomplete so needed help identifying types.
14 lines
326 B
Python
14 lines
326 B
Python
import renderdoc as rd
|
|
import rdtest
|
|
|
|
|
|
class VK_Validation_Use(rdtest.TestCase):
|
|
demos_test_name = 'VK_Validation_Use'
|
|
|
|
def check_capture(self):
|
|
last_action = self.get_last_action()
|
|
|
|
self.controller.SetFrameEvent(last_action.eventId, True)
|
|
|
|
self.check_triangle(out=last_action.copyDestination)
|