We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f0c632c + 7357856 commit 0d6fe56Copy full SHA for 0d6fe56
1 file changed
src/volumetric_clouds/main.clj
@@ -678,7 +678,7 @@
678
679
;; ### Compiling and linking shader programs
680
;;
681
-;; The following method is used compile a shader program.
+;; The following method is used to compile a shader.
682
(defn make-shader [source shader-type]
683
(let [shader (GL20/glCreateShader shader-type)]
684
(GL20/glShaderSource shader source)
@@ -687,7 +687,7 @@
687
(throw (Exception. (GL20/glGetShaderInfoLog shader 1024))))
688
shader))
689
690
-;; The different shaders are then linked to become a shader program using the following method.
+;; The different shaders are then linked to become a program using the following method.
691
(defn make-program [& shaders]
692
(let [program (GL20/glCreateProgram)]
693
(doseq [shader shaders]
0 commit comments