[PICA] Fixed vertex attribute uploads

This commit is contained in:
wheremyfoodat 2022-09-23 02:19:23 +03:00
parent a86796936f
commit 4b3c7955dd
6 changed files with 60 additions and 9 deletions

View file

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