nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
material_alpha_tests.h
1#ifndef NXDK_PGRAPH_TESTS_MATERIAL_TESTS_H
2#define NXDK_PGRAPH_TESTS_MATERIAL_TESTS_H
3
4#include "test_suite.h"
5
6class TestHost;
7
9 public:
10 MaterialAlphaTests(TestHost& host, std::string output_dir, const Config& config);
11
12 void Initialize() override;
13 void Deinitialize() override;
14
15 private:
16 void CreateGeometry();
17 void Test(uint32_t diffuse_source, float material_alpha);
18
19 static std::string MakeTestName(uint32_t diffuse_source, float material_alpha);
20};
21
22#endif // NXDK_PGRAPH_TESTS_MATERIAL_TESTS_H
Definition material_alpha_tests.h:8
void Deinitialize() override
Called to tear down the test suite.
Definition material_alpha_tests.cpp:50
void Initialize() override
Called to initialize the test suite.
Definition material_alpha_tests.cpp:39
Definition test_host.h:47
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23