mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
15 lines
412 B
Python
15 lines
412 B
Python
import renderdoc as rd
|
|
import rdtest
|
|
|
|
|
|
class GL_Empty_Capture(rdtest.TestCase):
|
|
demos_test_name = 'GL_Empty_Capture'
|
|
demos_frame_cap = 100
|
|
|
|
def check_capture(self):
|
|
actions = self.controller.GetRootActions()
|
|
|
|
self.check(len(actions) == 1)
|
|
self.check('End' in actions[0].customName)
|
|
# EID 1 is the implicit context activation
|
|
self.check(actions[0].eventId == 2) |