#ifndef SCREEN_H #define SCREEN_H #include #include #include #include "types.h" #include "Framebuffer.h" #include "Vertex.h" #include "Material.h" class Screen { public: Screen(); void Enable(); void Disable(); void Draw(); const int width = 640; const int height = 480; Texture tex; private: Id quad; Framebuffer framebuffer; Id renderbuffer; }; #endif /* SCREEN_H */