11 lines
155 B
C++
11 lines
155 B
C++
#pragma once
|
|
#include "PICA/shader.hpp"
|
|
|
|
class ShaderUnit {
|
|
|
|
public:
|
|
PICAShader vs; // Vertex shader
|
|
PICAShader gs; // Geometry shader
|
|
|
|
void reset();
|
|
}; |