27 lines
173 B
C
27 lines
173 B
C
|
|
|
||
|
|
#include "shader.h"
|
||
|
|
|
||
|
|
#include "mesh.h"
|
||
|
|
|
||
|
|
|
||
|
|
class renderPass{
|
||
|
|
|
||
|
|
bool enabled = true;
|
||
|
|
|
||
|
|
struct shader * shader;
|
||
|
|
|
||
|
|
struct mesh * mesh;
|
||
|
|
|
||
|
|
prepare() {
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
render() {
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|