@echo off

rem PhysX-FluidMark command line parameters:
rem /nogui : does not display the startup GUI.
rem /nomenubar : does not display the menu bar.
rem /noscore: does not display the final score box 
rem /fullscreen: starts FurMark in fullscreen mode
rem /width : specifies the screen width - Default: 1280
rem /height : specifies the screen height - Default: 1024
rem /msaa : specifies the MSAA level - Default: 0
rem /run_mode : specifies the run mode: 1 for benchmark, and 2 for stability test - Default: 1
rem /max_time : specifies the benchmark max time (run_mode=1) in milliseconds - Default: 60000
rem /max_frames : specifies the benchmark max number of frames (run_mode=1) - Default: -1
rem /app_process_priority : specifies FurMark process priority - Default: 32 (NORMAL_PRIORITY_CLASS) - See Win32 API for possible values.
rem /app_cpu_affinity : specifies FurMark main thread CPU affinity - Default: 1 (first CPU core)
rem /rendering_cpu_affinity : specifies FurMark rendering thread CPU affinity - Default: 2 (second CPU core). 

rem Example: start FurMark in benchmark mode for 10sec  (but does not display the final score!) in 640x480 / MSAA:X4, does not display the startup dialog box and does not display the menu bar.
start PhysX-FluidMark.exe /run_mode=1 /max_time=60000 /width=1280 /height=1024 /msaa=0 /nogui /nomenubar /fullscreen
