mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-17 19:25:39 +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
318 B
Python
14 lines
318 B
Python
import renderdoc as rd
|
|
import rdtest
|
|
|
|
|
|
class VK_Query_Pool(rdtest.TestCase):
|
|
demos_test_name = 'VK_Query_Pool'
|
|
|
|
def check_capture(self):
|
|
last_action = self.get_last_action()
|
|
|
|
self.controller.SetFrameEvent(last_action.eventId, True)
|
|
|
|
self.check_triangle(out=last_action.copyDestination)
|