nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
stencil_func_tests.h
1#ifndef NXDK_PGRAPH_TESTS_STENCIL_FUNC_TESTS_H
2#define NXDK_PGRAPH_TESTS_STENCIL_FUNC_TESTS_H
3
4#include <cstdint>
5#include <memory>
6#include <string>
7
8#include "test_suite.h"
9
10class TestHost;
11
22 public:
23 StencilFuncTests(TestHost &host, std::string output_dir, const Config &config);
24
25 void Initialize() override;
26
27 private:
28 void Test(const std::string &name, uint32_t stencil_func);
29};
30
31#endif // NXDK_PGRAPH_TESTS_STENCIL_FUNC_TESTS_H
Definition stencil_func_tests.h:21
void Initialize() override
Called to initialize the test suite.
Definition stencil_func_tests.cpp:90
Definition test_host.h:47
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23