nxdk_pgraph_tests
A collection of tests for the Xbox nv2a graphics processor
 
Loading...
Searching...
No Matches
passthrough_vertex_shader.h
1#ifndef NXDK_PGRAPH_TESTS_SHADERS_PASSTHROUGH_VERTEX_SHADER_H_
2#define NXDK_PGRAPH_TESTS_SHADERS_PASSTHROUGH_VERTEX_SHADER_H_
3
4#include <cstdint>
5
6#include "vertex_shader_program.h"
7#include "xbox_math_types.h"
8
9using namespace XboxMath;
10
13 public:
14 PassthroughVertexShader() = default;
15
16 protected:
17 void OnLoadShader() override;
18};
19
20#endif // NXDK_PGRAPH_TESTS_SHADERS_PASSTHROUGH_VERTEX_SHADER_H_
A vertex shader that passes through all inputs without modifications. It performs no lighting.
Definition passthrough_vertex_shader.h:12
Definition vertex_shader_program.h:13