@@ -0,0 +1 @@
+bin/
@@ -18,6 +18,7 @@
// Includes GLM
#include <glm/glm.hpp>
+#define GLM_ENABLE_EXPERIMENTAL
#include <glm/gtx/transform.hpp>
#include <glm/gtc/type_ptr.hpp>
@@ -8,6 +8,7 @@
@@ -193,7 +193,7 @@ void Cube::updateVBO(void *donnees, int tailleBytes, int decalage)
// Récupération de l'adresse du VBO
- void *adresseVBO = glMapBuffer(GL_ARRAY_BUFFER, GL_WRITE_ONLY);
+ void *adresseVBO = glMapBufferRange(GL_ARRAY_BUFFER, decalage, tailleBytes, GL_MAP_WRITE_BIT);
// Si l'adresse retournée est nulle alors on arrête le transfert
@@ -27,6 +27,7 @@
@@ -20,6 +20,7 @@
#include <glm/gtx/rotate_vector.hpp>
@@ -13,6 +13,7 @@
@@ -83,7 +83,7 @@ bool Texture::createTexture()
if(imageInversee->format->Rmask == 0xff)
m_format = GL_RGB;
else
- m_format = GL_BGR;
+ m_format = GL_RGB; // must be BGR
}
// Détermination du format et du format interne pour les images à 4 composantes
@@ -93,10 +93,7 @@ bool Texture::createTexture()
m_formatInterne = GL_RGBA;
// Format
- if(imageInversee->format->Rmask == 0xff)
- m_format = GL_RGBA;
- else
- m_format = GL_BGRA;
+ m_format = GL_RGBA;
// Dans les autres cas, on arrête le chargement