소스 검색

use GLES3, and glm/, update and spread makefile

xayon40-12 4 년 전
부모
커밋
e0e2fd340f

+ 1 - 1
arena/Cube.h

@@ -19,7 +19,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 

+ 1 - 1
arena/FrameBuffer.h

@@ -13,7 +13,7 @@
 // Include UNIX/Linux
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 #endif
 
 // Includes communs

+ 1 - 1
arena/SceneOpenGL.h

@@ -14,7 +14,7 @@
 // Include UNIX/Linux
 #else
     #define GL3_PROTOTYPES 1
-    #include <GL3/gl3.h>
+    #include <GLES3/gl3.h>
 
 #endif
 

+ 1 - 1
arena/Shader.h

@@ -13,7 +13,7 @@
 // Include UNIX/Linux
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 #endif
 
 // Includes communs

+ 1 - 1
arena/Surface3D.h

@@ -7,7 +7,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 

+ 1 - 1
arena/Texture.h

@@ -15,7 +15,7 @@
 // Include UNIX/Linux
 #else
     #define GL3_PROTOTYPES 1
-    #include <GL3/gl3.h>
+    #include <GLES3/gl3.h>
 #endif
 
 // Autres includes

+ 25 - 0
arena/makefile

@@ -0,0 +1,25 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=-lSDL2 -lOpenGL
+INC=
+LIB=
+
+EXEC=AppOpenGL
+SRC=$(shell find . -name '*.cpp')
+OBJ=$(SRC:.cpp=.o)
+
+$(EXEC): $(OBJ)
+	@mkdir -p bin
+	$(CXX) -o bin/$@ $^ $(LDFLAGS) $(LIB)
+
+%.o : %.cpp
+	$(CXX) -o $@ -c $< $(CXXFLAGS) $(INC)
+
+clean:
+	rm -rf $(OBJ)
+
+distclean: clean
+	rm -rf ./bin
+
+exec: $(EXEC)
+	./bin/$(EXEC)

+ 2 - 2
caban/Cabane.h

@@ -9,14 +9,14 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 
 
 // Includes GLM
 
-#include <glm.hpp>
+#include <glm/glm.hpp>
 #include <gtx/transform.hpp>
 #include <gtc/type_ptr.hpp>
 

+ 1 - 1
caban/Camera.h

@@ -4,7 +4,7 @@
 
 // Includes GLM
 
-#include <glm.hpp>
+#include <glm/glm.hpp>
 #include <gtx/transform.hpp>
 #include <gtc/type_ptr.hpp>
 

+ 2 - 2
caban/Cristal.h

@@ -9,14 +9,14 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 
 
 // Includes GLM
 
-#include <glm.hpp>
+#include <glm/glm.hpp>
 #include <gtx/transform.hpp>
 #include <gtc/type_ptr.hpp>
 

+ 2 - 2
caban/Cube.h

@@ -9,14 +9,14 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 
 
 // Includes GLM
 
-#include <glm.hpp>
+#include <glm/glm.hpp>
 #include <gtx/transform.hpp>
 #include <gtc/type_ptr.hpp>
 

+ 2 - 2
caban/SceneOpenGL.h

@@ -9,14 +9,14 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 
 
 // Includes GLM
 
-#include <glm.hpp>
+#include <glm/glm.hpp>
 #include <gtx/transform.hpp>
 #include <gtc/type_ptr.hpp>
 

+ 1 - 1
caban/Shader.h

@@ -19,7 +19,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 

+ 2 - 2
caban/Sol.h

@@ -9,14 +9,14 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 
 
 // Includes GLM
 
-#include <glm.hpp>
+#include <glm/glm.hpp>
 #include <gtx/transform.hpp>
 #include <gtc/type_ptr.hpp>
 

+ 1 - 1
caban/Texture.h

@@ -14,7 +14,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 #include <SDL2/SDL_image.h>
 
 #endif

+ 25 - 0
caban/makefile

@@ -0,0 +1,25 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=-lSDL2 -lOpenGL
+INC=
+LIB=
+
+EXEC=AppOpenGL
+SRC=$(shell find . -name '*.cpp')
+OBJ=$(SRC:.cpp=.o)
+
+$(EXEC): $(OBJ)
+	@mkdir -p bin
+	$(CXX) -o bin/$@ $^ $(LDFLAGS) $(LIB)
+
+%.o : %.cpp
+	$(CXX) -o $@ -c $< $(CXXFLAGS) $(INC)
+
+clean:
+	rm -rf $(OBJ)
+
+distclean: clean
+	rm -rf ./bin
+
+exec: $(EXEC)
+	./bin/$(EXEC)

+ 1 - 1
colorCube/ColorCube.h

@@ -8,7 +8,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL/gl.h>
+#include <GLES3/gl3.h>
 #endif
 
 // Includes GLM

+ 1 - 1
colorCube/Mosaic.h

@@ -7,7 +7,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL/gl.h>
+#include <GLES3/gl3.h>
 #endif
 
 // Includes GLM

+ 1 - 1
colorCube/SceneOpenGL.h

@@ -10,7 +10,7 @@
 // Includes OpenGL
 #include <SDL2/SDL.h>
 #define GL3_PROTOTYPES 1
-#include <GL/gl.h>
+#include <GLES3/gl3.h>
 
 //Includes de base
 #include <string>

+ 1 - 1
colorCube/Shader.h

@@ -10,7 +10,7 @@
 // Include Mac ou UNIX/Linux
 #else
 #define GL3_PROTOTYPES 1
-#include <GL/gl.h>
+#include <GLES3/gl3.h>
 
 #endif
 

+ 1 - 1
colorCube/makefile

@@ -1,6 +1,6 @@
 CXX=g++
 CXXFLAGS=
-LDFLAGS=-lSDL2
+LDFLAGS=-lSDL2 -lOpenGL
 INC=
 LIB=
 

+ 1 - 1
cubeWorld/Cubes/Cube.h

@@ -13,7 +13,7 @@
 // Include UNIX/Linux
 #else
 #define GL3_PROTOTYPES 1
-#include <GL/gl.h>
+#include <GLES3/gl3.h>
 #endif
 
 // Includes GLM

+ 1 - 1
cubeWorld/Cubes/Texture.h

@@ -6,7 +6,7 @@
 #include <GL/glew.h>
 #else
 #define GL3_PROTOTYPES 1
-#include <GL/gl.h>
+#include <GLES3/gl3.h>
 #endif
 
 #include <SDL2/SDL.h>

+ 1 - 1
cubeWorld/SceneOpenGL.h

@@ -10,7 +10,7 @@
 // Includes OpenGL
 #include <SDL2/SDL.h>
 #define GL3_PROTOTYPES 1
-#include <GL/gl.h>
+#include <GLES3/gl3.h>
 
 //Includes de base
 #include <string>

+ 1 - 1
cubeWorld/Shader.h

@@ -13,7 +13,7 @@
 // Include UNIX/Linux
 #else
 #define GL3_PROTOTYPES 1
-#include <GL/gl.h>
+#include <GLES3/gl3.h>
 #endif
 
 // Includes communs

+ 2 - 2
cubeWorld/makefile

@@ -1,10 +1,10 @@
 CXX=g++
 CXXFLAGS=
-LDFLAGS=-lSDL2
+LDFLAGS=-lSDL2 -lOpenGL
 INC=
 LIB=
 
-EXEC=GlApp
+EXEC=AppOpenGL
 SRC=$(shell find . -name '*.cpp')
 OBJ=$(SRC:.cpp=.o)
 

+ 1 - 0
shaderTest/.gitignore

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

+ 1 - 1
shaderTest/ColorCube.h

@@ -8,7 +8,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 #endif
 
 // Includes GLM

+ 1 - 1
shaderTest/Mosaic.h

@@ -7,7 +7,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 #endif
 
 // Includes GLM

+ 1 - 1
shaderTest/SceneOpenGL.h

@@ -9,7 +9,7 @@
 // Includes OpenGL
 #include <SDL2/SDL.h>
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 //Includes de base
 #include <string>

+ 1 - 1
shaderTest/Shader.h

@@ -10,7 +10,7 @@
 // Include Mac ou UNIX/Linux
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 

+ 25 - 0
shaderTest/makefile

@@ -0,0 +1,25 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=-lSDL2 -lOpenGL
+INC=
+LIB=
+
+EXEC=AppOpenGL
+SRC=$(shell find . -name '*.cpp')
+OBJ=$(SRC:.cpp=.o)
+
+$(EXEC): $(OBJ)
+	@mkdir -p bin
+	$(CXX) -o bin/$@ $^ $(LDFLAGS) $(LIB)
+
+%.o : %.cpp
+	$(CXX) -o $@ -c $< $(CXXFLAGS) $(INC)
+
+clean:
+	rm -rf $(OBJ)
+
+distclean: clean
+	rm -rf ./bin
+
+exec: $(EXEC)
+	./bin/$(EXEC)

+ 1 - 1
textureTest/Cube.h

@@ -9,7 +9,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 

+ 1 - 1
textureTest/SceneOpenGL.h

@@ -9,7 +9,7 @@
 // Includes OpenGL
 #include <SDL2/SDL.h>
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 //Includes de base
 #include <string>

+ 1 - 1
textureTest/Shader.h

@@ -19,7 +19,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 

+ 1 - 1
textureTest/Surface3D.h

@@ -7,7 +7,7 @@
 
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 
 #endif
 

+ 1 - 1
textureTest/Texture.h

@@ -6,7 +6,7 @@
 #include <GL/glew.h>
 #else
 #define GL3_PROTOTYPES 1
-#include <GL3/gl3.h>
+#include <GLES3/gl3.h>
 #endif
 
 #include <SDL2/SDL.h>

+ 25 - 0
textureTest/makefile

@@ -0,0 +1,25 @@
+CXX=g++
+CXXFLAGS=
+LDFLAGS=-lSDL2 -lOpenGL
+INC=
+LIB=
+
+EXEC=AppOpenGL
+SRC=$(shell find . -name '*.cpp')
+OBJ=$(SRC:.cpp=.o)
+
+$(EXEC): $(OBJ)
+	@mkdir -p bin
+	$(CXX) -o bin/$@ $^ $(LDFLAGS) $(LIB)
+
+%.o : %.cpp
+	$(CXX) -o $@ -c $< $(CXXFLAGS) $(INC)
+
+clean:
+	rm -rf $(OBJ)
+
+distclean: clean
+	rm -rf ./bin
+
+exec: $(EXEC)
+	./bin/$(EXEC)