Add support for opengl 4.5
This commit is contained in:
parent
6be102db56
commit
686016886f
1 changed files with 2 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue