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