nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
clear_tests.h
1#ifndef NXDK_PGRAPH_TESTS_CLEAR_TESTS_H
2#define NXDK_PGRAPH_TESTS_CLEAR_TESTS_H
3
4#include "test_suite.h"
5
6class TestHost;
7
19class ClearTests : public TestSuite {
20 public:
21 ClearTests(TestHost& host, std::string output_dir, const Config& config);
22
23 void Initialize() override;
24
25 private:
26 void CreateGeometry();
27 void Test(uint32_t color_mask, bool depth_write_enable);
28
29 static std::string MakeTestName(uint32_t color_mask, bool depth_write_enable);
30};
31#endif // NXDK_PGRAPH_TESTS_CLEAR_TESTS_H
Definition clear_tests.h:19
void Initialize() override
Called to initialize the test suite.
Definition clear_tests.cpp:134
Definition test_host.h:47
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23