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