nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
surface_pitch_tests.h
1#ifndef NXDK_PGRAPH_TESTS_SURFACE_PITCH_TESTS_H
2#define NXDK_PGRAPH_TESTS_SURFACE_PITCH_TESTS_H
3
4#include <memory>
5#include <string>
6
7#include "test_host.h"
8#include "test_suite.h"
9
11 public:
12 SurfacePitchTests(TestHost &host, std::string output_dir, const Config &config);
13 void Initialize() override;
14
15 private:
16 void TestSwizzle();
17
18 void DrawResults(const uint32_t *result_textures, const uint32_t demo_memory) const;
19};
20
21#endif // NXDK_PGRAPH_TESTS_SURFACE_PITCH_TESTS_H
Definition surface_pitch_tests.h:10
void Initialize() override
Called to initialize the test suite.
Definition surface_pitch_tests.cpp:27
Definition test_host.h:47
Definition test_suite.h:20
Runtime configuration for TestSuites.
Definition test_suite.h:23