nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
lighting_range_tests.h
1#ifndef NXDK_PGRAPH_TESTS_LIGHTING_RANGE_TESTS_H
2#define NXDK_PGRAPH_TESTS_LIGHTING_RANGE_TESTS_H
3
4#include <memory>
5#include <vector>
6
7#include "test_suite.h"
8
9class Light;
10class TestHost;
11class VertexBuffer;
12
24 public:
25 LightingRangeTests(TestHost& host, std::string output_dir, const Config& config);
26
27 void Deinitialize() override;
28 void Initialize() override;
29
30 private:
32 void Test(const std::string& name, std::shared_ptr<Light> light);
33
34 void CreateGeometry();
35
36 private:
37 std::shared_ptr<VertexBuffer> vertex_buffer_mesh_;
38};
39
40#endif // NXDK_PGRAPH_TESTS_LIGHTING_RANGE_TESTS_H
Definition light.h:13
Definition lighting_range_tests.h:23
void Deinitialize() override
Called to tear down the test suite.
Definition lighting_range_tests.cpp:87
void Initialize() override
Called to initialize the test suite.
Definition lighting_range_tests.cpp:103
Definition test_host.h:47
Definition test_suite.h:20
Definition vertex_buffer.h:204
Runtime configuration for TestSuites.
Definition test_suite.h:23