浏览代码

Merge branch 'fix/arena-build'

DricomDragon 4 年之前
父节点
当前提交
83dc19b90b
共有 8 个文件被更改,包括 9 次插入6 次删除
  1. 1 0
      arena/.gitignore
  2. 1 0
      arena/3D/Modele3D.h
  3. 1 0
      arena/Camera.h
  4. 1 1
      arena/Cube.cpp
  5. 1 0
      arena/Cube.h
  6. 1 0
      arena/SceneOpenGL.h
  7. 1 0
      arena/Surface3D.h
  8. 2 5
      arena/Texture.cpp

+ 1 - 0
arena/.gitignore

@@ -0,0 +1 @@
+bin/

+ 1 - 0
arena/3D/Modele3D.h

@@ -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>
 

+ 1 - 0
arena/Camera.h

@@ -8,6 +8,7 @@
 
 // Includes GLM
 #include <glm/glm.hpp>
+#define GLM_ENABLE_EXPERIMENTAL
 #include <glm/gtx/transform.hpp>
 #include <glm/gtc/type_ptr.hpp>
 

+ 1 - 1
arena/Cube.cpp

@@ -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

+ 1 - 0
arena/Cube.h

@@ -27,6 +27,7 @@
 // Includes GLM
 
 #include <glm/glm.hpp>
+#define GLM_ENABLE_EXPERIMENTAL
 #include <glm/gtx/transform.hpp>
 #include <glm/gtc/type_ptr.hpp>
 

+ 1 - 0
arena/SceneOpenGL.h

@@ -20,6 +20,7 @@
 
 // Includes GLM
 #include <glm/glm.hpp>
+#define GLM_ENABLE_EXPERIMENTAL
 #include <glm/gtx/transform.hpp>
 #include <glm/gtc/type_ptr.hpp>
 #include <glm/gtx/rotate_vector.hpp>

+ 1 - 0
arena/Surface3D.h

@@ -13,6 +13,7 @@
 
 // Includes GLM
 #include <glm/glm.hpp>
+#define GLM_ENABLE_EXPERIMENTAL
 #include <glm/gtx/transform.hpp>
 #include <glm/gtc/type_ptr.hpp>
 

+ 2 - 5
arena/Texture.cpp

@@ -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