[PICA] Start implementing shader interpreter

This commit is contained in:
wheremyfoodat 2022-09-23 02:43:51 +03:00
parent 4b3c7955dd
commit 057aa57422
5 changed files with 32 additions and 6 deletions

View file

@ -4,8 +4,9 @@
class ShaderUnit {
public:
PICAShader<ShaderType::Vertex> vs; // Vertex shader
PICAShader<ShaderType::Geometry> gs; // Geometry shader
PICAShader vs; // Vertex shader
PICAShader gs; // Geometry shader
ShaderUnit() : vs(ShaderType::Vertex), gs(ShaderType::Geometry) {}
void reset();
};