Changes to compile
This commit is contained in:
parent
e8a17566dd
commit
f12e0d16cb
1
deps.edn
1
deps.edn
|
@ -6,6 +6,7 @@
|
||||||
org.lwjgl/lwjgl { :mvn/version "3.3.3" }
|
org.lwjgl/lwjgl { :mvn/version "3.3.3" }
|
||||||
org.lwjgl/lwjgl-glfw { :mvn/version "3.3.3" }
|
org.lwjgl/lwjgl-glfw { :mvn/version "3.3.3" }
|
||||||
org.lwjgl/lwjgl-opengl { :mvn/version "3.3.3" }
|
org.lwjgl/lwjgl-opengl { :mvn/version "3.3.3" }
|
||||||
|
nrepl/nrepl { :mvn/version "0.4.0" }
|
||||||
}
|
}
|
||||||
:aliases {
|
:aliases {
|
||||||
:build {
|
:build {
|
||||||
|
|
|
@ -75,7 +75,7 @@
|
||||||
(defn draw []
|
(defn draw []
|
||||||
(GL33/glClearColor 1.0 0.0 0.0 0.0)
|
(GL33/glClearColor 1.0 0.0 0.0 0.0)
|
||||||
(GL33/glClear (bit-or GL33/GL_COLOR_BUFFER_BIT
|
(GL33/glClear (bit-or GL33/GL_COLOR_BUFFER_BIT
|
||||||
GL33/GL33/GL_DEPTH_BUFFER_BIT))
|
GL33/GL_DEPTH_BUFFER_BIT))
|
||||||
|
|
||||||
(GLFW/glfwSwapBuffers windows)
|
(GLFW/glfwSwapBuffers window)
|
||||||
(GLFW/glfwPollEvents))
|
(GLFW/glfwPollEvents))
|
||||||
|
|
Loading…
Reference in New Issue