mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
12 lines
No EOL
223 B
C++
12 lines
No EOL
223 B
C++
#pragma once
|
|
#include "PICA/shader.hpp"
|
|
|
|
class ShaderUnit {
|
|
|
|
public:
|
|
PICAShader vs; // Vertex shader
|
|
PICAShader gs; // Geometry shader
|
|
|
|
ShaderUnit() : vs(ShaderType::Vertex), gs(ShaderType::Geometry) {}
|
|
void reset();
|
|
}; |