Added extra test platform.
[cl-glfw.git] / lib / opengl-ext_framebuffer_blit.lisp
blob5200c0def4a61e08802c4460cd192ecceb3ce0cd
2 (in-package #:gl)
4 ;;;; EXT_framebuffer_blit
6 (defconstant +read-framebuffer-ext+ #x8CA8)
7 (defconstant +draw-framebuffer-ext+ #x8CA9)
8 (defconstant +read-framebuffer-binding-ext+ #x8CA6)
9 (defconstant +draw-framebuffer-binding-ext+ #x8CAA)
10 (defglextfun
11 (("BlitFramebufferEXT" blit-framebuffer-ext) :args
12 ((:name |srcX0| :type |Int32| :direction :in)
13 (:name |srcY0| :type |Int32| :direction :in)
14 (:name |srcX1| :type |Int32| :direction :in)
15 (:name |srcY1| :type |Int32| :direction :in)
16 (:name |dstX0| :type |Int32| :direction :in)
17 (:name |dstY0| :type |Int32| :direction :in)
18 (:name |dstX1| :type |Int32| :direction :in)
19 (:name |dstY1| :type |Int32| :direction :in)
20 (:name |mask| :type |ClearBufferMask| :direction :in)
21 (:name |filter| :type |GLenum| :direction :in))
22 :return ("void") :category ("EXT_framebuffer_blit") :version ("1.5")
23 :glxropcode ("4330") :glsopcode ("?") :offset ("?")))