nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
fog_carryover_tests.h
1#ifndef NXDK_PGRAPH_TESTS_FOG_CARRYOVER_TESTS_H
2#define NXDK_PGRAPH_TESTS_FOG_CARRYOVER_TESTS_H
3
4#include <memory>
5#include <vector>
6
7#include "test_suite.h"
8
9class TestHost;
10
17 public:
18 FogCarryoverTests(TestHost& host, std::string output_dir, const Config& config);
19
20 void Initialize() override;
21
22 private:
23 void Test();
24};
25
26#endif // NXDK_PGRAPH_TESTS_FOG_CARRYOVER_TESTS_H
Definition fog_carryover_tests.h:16
void Initialize() override
Called to initialize the test suite.
Definition fog_carryover_tests.cpp:75
Definition test_host.h:47
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23