nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
texture_cpu_update_tests.h
1#ifndef NXDK_PGRAPH_TESTS_TEXTURE_CPU_UPDATE_TESTS_H
2#define NXDK_PGRAPH_TESTS_TEXTURE_CPU_UPDATE_TESTS_H
3
4#include <string>
5
6#include "test_host.h"
7#include "test_suite.h"
8
10 public:
11 TextureCPUUpdateTests(TestHost& host, std::string output_dir, const Config& config);
12
13 void Initialize() override;
14
15 private:
16 void CreateGeometry();
17
18 void TestRGBA();
19 void TestPalettized();
20};
21
22#endif // NXDK_PGRAPH_TESTS_TEXTURE_CPU_UPDATE_TESTS_H
Definition test_host.h:33
Definition test_suite.h:20
Definition texture_cpu_update_tests.h:9
void Initialize() override
Called to initialize the test suite.
Definition texture_cpu_update_tests.cpp:26
Runtime configuration for TestSuites.
Definition test_suite.h:23