framebuffer.hpp 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* framebuffer.hpp: Creates and manages an off-screen framebuffer. Uses supplied shader to draw it to the screen.
  2. *
  3. * Copyright (C) 2014: Dalton Nell, Slop Contributors (https://github.com/naelstrof/slop/graphs/contributors).
  4. *
  5. * This file is part of Slop.
  6. *
  7. * Slop is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Slop is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with Slop. If not, see <http://www.gnu.org/licenses/>.
  19. */
  20. #ifndef N_FRAMEBUFFER_H_
  21. #define N_FRAMEBUFFER_H_
  22. #include "gl_core_3_3.h"
  23. #include <glm/glm.hpp>
  24. #include <GL/gl.h>
  25. #include <vector>
  26. #include "shader.hpp"
  27. namespace slop {
  28. class Framebuffer {
  29. private:
  30. unsigned int fbuffer;
  31. unsigned int image;
  32. unsigned int buffers[2];
  33. unsigned int vertCount;
  34. Shader* shader;
  35. public:
  36. Framebuffer( int w, int h );
  37. ~Framebuffer();
  38. void setShader( std::string );
  39. void draw();
  40. void resize( int w, int h );
  41. void bind();
  42. void unbind();
  43. };
  44. }
  45. #endif