8 lines
244 B
Batchfile
8 lines
244 B
Batchfile
|
|
@echo off
|
||
|
|
cd /d "%~dp0..\..\..\..\build\tests\OpenGL\Debug"
|
||
|
|
if exist "OpenGL_engine_log.txt" del "OpenGL_engine_log.txt"
|
||
|
|
if exist "screenshot.ppm" del "screenshot.ppm"
|
||
|
|
XCRender.exe
|
||
|
|
python "%~dp0compare_ppm.py" "screenshot.ppm" "GT.ppm" 5
|
||
|
|
pause
|