9 lines
237 B
Python
9 lines
237 B
Python
|
|
import sys
|
||
|
|
|
||
|
|
sys.path.insert(0, "engine/tools")
|
||
|
|
from renderdoc_parser import open_capture, get_capture_info, get_frame_overview
|
||
|
|
|
||
|
|
open_capture("engine/tools/renderdoc_parser/test.rdc")
|
||
|
|
print(get_capture_info())
|
||
|
|
print(get_frame_overview())
|