File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 62
62
(:file " funcs-gles2" )
63
63
; ; Lispifications.
64
64
(:file " package" )
65
+ (:file " special-constants" )
65
66
(:file " util" )
66
67
(:file " opengl" )
67
68
(:file " rasterization" )
Original file line number Diff line number Diff line change 455
455
# :create-renderbuffers
456
456
# :create-renderbuffer
457
457
# :delete-renderbuffer
458
- # :bind-image-textures))
458
+ # :bind-image-textures
459
+ ; ; extra constants
460
+ # :+all-pixels-amd+
461
+ # :+invalid-index+
462
+ # :+timeout-ignored+
463
+ # :+timeout-ignored-apple+ ))
Original file line number Diff line number Diff line change
1
+ (in-package # :cl-opengl)
2
+
3
+ ; ;; special values for some numeric arguments
4
+
5
+ (defconstant +all-pixels-amd+ #xFFFFFFFF )
6
+ (defconstant +invalid-index+ #xFFFFFFFF )
7
+ (defconstant +timeout-ignored+ #xFFFFFFFFFFFFFFFF )
8
+ (defconstant +timeout-ignored-apple+ #xFFFFFFFFFFFFFFFF )
9
+
You can’t perform that action at this time.
0 commit comments