1234567891011121314151617181920212223242526272829303132 |
- ----------------------------------------------------------------------------------------------------
- --
- -- Copyright (c) Contributors to the Open 3D Engine Project.
- -- For complete copyright and license terms please see the LICENSE at the root of this distribution.
- --
- -- SPDX-License-Identifier: Apache-2.0 OR MIT
- --
- --
- --
- ----------------------------------------------------------------------------------------------------
- RunScript("scripts/TestEnvironment.luac")
- function TakeScreenShot4xCylinder()
- SetImguiValue('Mode/MSAA 4x', true)
- SetImguiValue('Model/ShaderBall', true)
- ArcBallCameraController_SetDistance(4.0)
- IdleFrames(10) -- Need a few frames to let all Ibl mip levels load in
- CaptureScreenshot(g_testCaseFolder .. '/screenshot_msaa4x_cylinder.png')
- end
- g_testCaseFolder = 'MSAA_RPI'
- Print('Saving screenshots to ' .. NormalizePath(g_screenshotOutputFolder .. g_testCaseFolder))
- OpenSample('RPI/MSAA')
- ResizeViewport(800, 600)
- SelectImageComparisonToleranceLevel("Level G")
- TakeScreenShot4xCylinder()
- OpenSample(nil)
|