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