Surface3D.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef SURFACE3D_H_INCLUDED
  2. #define SURFACE3D_H_INCLUDED
  3. // Includes OpenGL
  4. #ifdef WIN32
  5. #include <GL/glew.h>
  6. #else
  7. #define GL3_PROTOTYPES 1
  8. #include <GLES3/gl3.h>
  9. #endif
  10. // Includes GLM
  11. #include <glm/glm.hpp>
  12. #include <glm/gtx/transform.hpp>
  13. #include <glm/gtc/type_ptr.hpp>
  14. // Includes
  15. #include <iostream>
  16. #include "Shader.h"
  17. #include "Texture.h"
  18. #include "macro.h"
  19. class Surface3D
  20. {
  21. public:
  22. Surface3D(float tailleX, float tailleY, std::string const fichierImage, float multi=1); // Détruira la texture
  23. Surface3D(float tailleX, float tailleY, GLuint samplerID, float multi=1); // Ne détruira pas la texture
  24. ~Surface3D();
  25. void afficher(glm::mat4 pmv, Shader const &shad);
  26. void charger();
  27. private:
  28. Texture* m_texture;
  29. GLuint m_textID;
  30. float m_vertices[18];
  31. float m_coordTexture[12];
  32. GLuint m_vboID;
  33. int m_tailleVerticesBytes;
  34. int m_tailleCoordTextureBytes;
  35. GLuint m_vaoID;
  36. };
  37. #endif // SURFACE3D_H_INCLUDED