nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
clipping_precision_tests.h
1#ifndef NXDK_PGRAPH_TESTS_CLIPPING_PRECISION_TESTS_H
2#define NXDK_PGRAPH_TESTS_CLIPPING_PRECISION_TESTS_H
3
4#include "test_suite.h"
5
6class TestHost;
7
9 public:
10 ClippingPrecisionTests(TestHost &host, std::string output_dir, const Config &config);
11
12 void Initialize() override;
13 void Deinitialize() override;
14
15 private:
16 void TestClippingPrecisionFrame(float ofs, bool perspective_corrected, bool flat, float rotate_angle,
17 int vertex_cycle, bool done);
18 void TestClippingPrecision(bool perspective_corrected, bool flat, float rotate_angle, int vertex_cycle);
19};
20
21#endif // NXDK_PGRAPH_TESTS_CLIPPING_PRECISION_TESTS_H
Definition clipping_precision_tests.h:8
void Deinitialize() override
Called to tear down the test suite.
Definition clipping_precision_tests.cpp:47
void Initialize() override
Called to initialize the test suite.
Definition clipping_precision_tests.cpp:39
Definition test_host.h:33
Definition test_suite.h:21
Runtime configuration for TestSuites.
Definition test_suite.h:24