nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
fog_param_tests.h
1#ifndef NXDK_PGRAPH_TESTS_FOG_PARAM_TESTS_H
2#define NXDK_PGRAPH_TESTS_FOG_PARAM_TESTS_H
3
4#include <memory>
5#include <vector>
6
7#include "test_suite.h"
8
9class TestHost;
10
17class FogParamTests : public TestSuite {
18 public:
19 FogParamTests(TestHost& host, std::string output_dir, const Config& config);
20
21 void Initialize() override;
22
23 private:
24 void Test(const std::string& name, uint32_t fog_mode, float bias, float linear);
25
27 void TestBiasZeroPoint(const std::string& name, uint32_t fog_mode);
28};
29
30#endif // NXDK_PGRAPH_TESTS_FOG_PARAM_TESTS_H
Definition fog_param_tests.h:17
void Initialize() override
Called to initialize the test suite.
Definition fog_param_tests.cpp:325
Definition test_host.h:48
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23