nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
alpha_func_tests.h
1#ifndef ALPHAFUNCTESTS_H
2#define ALPHAFUNCTESTS_H
3
4#include <string>
5
6#include "test_host.h"
7#include "test_suite.h"
8
12class AlphaFuncTests : public TestSuite {
13 public:
14 AlphaFuncTests(TestHost &host, std::string output_dir, const Config &config);
15
16 void Initialize() override;
17
18 private:
19 void Test(const std::string &name, uint32_t alpha_func, bool enable);
20
21 void Draw(float red, float green, float blue, float left_alpha, float right_alpha, float top, float bottom) const;
22};
23
24#endif // ALPHAFUNCTESTS_H
Definition alpha_func_tests.h:12
void Initialize() override
Called to initialize the test suite.
Definition alpha_func_tests.cpp:95
Definition test_host.h:47
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23