Revert "adding textures (has errors)"

This reverts commit eb6101d2ec.

reverting textures
This commit is contained in:
emh
2020-05-10 10:56:40 -04:00
parent 6f99ed0ebe
commit d2b8e7015a
12 changed files with 26 additions and 99 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
package org.hl.engine.io;
import org.hl.engine.math.lalg.Vector3f;
import org.hl.engine.math.Vector3f;
import org.lwjgl.glfw.GLFWVidMode;
import org.lwjgl.glfw.GLFWWindowSizeCallback;
import org.lwjgl.opengl.GL;
@@ -102,8 +102,8 @@ public class Display {
System.exit(1);
}
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 6);
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL11.GL_TRUE);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);