Panda3DS/include/PICA/shader_unit.hpp
2022-09-22 03:46:19 +03:00

11 lines
No EOL
155 B
C++

#pragma once
#include "PICA/shader.hpp"
class ShaderUnit {
public:
PICAShader vs; // Vertex shader
PICAShader gs; // Geometry shader
void reset();
};