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_host.h"
5#include "test_suite.h"
6
23class ClearTests : public TestSuite {
24 public:
25 ClearTests(TestHost& host, std::string output_dir, const Config& config);
26
27 void Initialize() override;
28
29 private:
30 void CreateGeometry();
31
32 void TestColorMask(uint32_t color_mask, bool depth_write_enable);
33 void TestSurfaceFmt(TestHost::SurfaceColorFormat surface_format, const std::string& name);
34};
35#endif // NXDK_PGRAPH_TESTS_CLEAR_TESTS_H
Definition clear_tests.h:23
void Initialize() override
Called to initialize the test suite.
Definition clear_tests.cpp:193
Definition test_host.h:33
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23