Add support for opengl 4.5

This commit is contained in:
Renaud Casenave-Péré 2015-12-07 22:11:23 +01:00
parent 6be102db56
commit 686016886f

View file

@ -28,7 +28,8 @@ if non-nil, the dsl will be printed in comments together with the glsl code.")
(defvar *version-profiles* '((1.3 . "#version 130
// #extension ARB_explicit_attrib_location : require")
(3.3 . "#version 330 core")
(4.4 . "#version 440 core")))
(4.4 . "#version 440 core")
(4.5 . "#version 450 core")))
(defvar *glsl-symbols* '(:gl-position "gl_Position"
:gl-fragcoord "gl_FragCoord"