Changeset View
Changeset View
Standalone View
Standalone View
tests/python/opengl_draw_tests.py
| Show All 33 Lines | |||||
| def get_arguments(filepath, output_filepath): | def get_arguments(filepath, output_filepath): | ||||
| return [ | return [ | ||||
| "--no-window-focus", | "--no-window-focus", | ||||
| "--window-geometry", | "--window-geometry", | ||||
| "0", "0", "1024", "768", | "0", "0", "1024", "768", | ||||
| "-noaudio", | "-noaudio", | ||||
| "--factory-startup", | "--factory-startup", | ||||
| "--enable-autoexec", | "--enable-autoexec", | ||||
| "--debug-memory", | |||||
| "--fail-on-memleak", | |||||
| filepath, | filepath, | ||||
| "-P", | "-P", | ||||
| os.path.realpath(__file__), | os.path.realpath(__file__), | ||||
| "--", | "--", | ||||
| output_filepath + '0001.png'] | output_filepath + '0001.png'] | ||||
| def create_argparse(): | def create_argparse(): | ||||
| Show All 26 Lines | |||||