nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
point_params_tests.h
1#ifndef POINTPARAMSTESTS_H
2#define POINTPARAMSTESTS_H
3
4#include <string>
5
6#include "test_host.h"
7#include "test_suite.h"
8
64 public:
65 PointParamsTests(TestHost &host, std::string output_dir, const Config &config);
66
67 void Initialize() override;
68
69 private:
70 void Test(const std::string &name, bool point_params_enabled, bool point_smooth_enabled, int point_size,
71 bool use_shader);
72
73 void TestDetailed(const std::string &name, bool use_shader);
74};
75#endif // POINTPARAMSTESTS_H
Definition point_params_tests.h:63
void Initialize() override
Called to initialize the test suite.
Definition point_params_tests.cpp:125
Definition test_host.h:47
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23