VisPro  1.0
Project of Visualisierung 2
Quad.h
Go to the documentation of this file.
1 #pragma once
2 
7 #include "glew.h"
8 #include "glfw3.h"
9 #include <list>
10 #include <vector>
11 
14 class Quad {
15 public:
16  Quad();
17  ~Quad();
18  void useShader();
19  void bindVAO();
20 private:
21  GLuint vao, vbo;
22  static GLfloat vertices[24];
23 
24 };
25 
Definition: Quad.h:14