Small tidy-up, ensure window isn't closed twice.
[cl-glfw.git] / lib / opengl-apple_flush_buffer_range.lisp
blob476f9bf729120226c1555dcb2f5d235e34220e27
2 (in-package #:gl)
4 ;;;; APPLE_flush_buffer_range
6 (defconstant +buffer-serialized-modify-apple+ #x8A12)
7 (defconstant +buffer-flushing-unmap-apple+ #x8A13)
8 (defglextfun
9 (("FlushMappedBufferRangeAPPLE" flush-mapped-buffer-range-apple) :args
10 ((:name |target| :type |GLenum| :direction :in)
11 (:name |offset| :type |BufferOffset| :direction :in)
12 (:name |size| :type |BufferSize| :direction :in))
13 :return ("void") :category ("APPLE_flush_buffer_range") :version ("1.5")
14 :extension nil :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?")
15 :offset ("?")))
16 (defglextfun
17 (("BufferParameteriAPPLE" buffer-parameter-i-apple) :args
18 ((:name |target| :type |GLenum| :direction :in)
19 (:name |pname| :type |GLenum| :direction :in)
20 (:name |param| :type |Int32| :direction :in))
21 :return ("void") :category ("APPLE_flush_buffer_range") :version ("1.5")
22 :extension nil :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?")
23 :offset ("?")))