Stripped out a lot of useless info from the spec, by selecting only what is needed.
[cl-glfw/jecs.git] / lib / opengl-ext_framebuffer_blit.lisp
blob9dad576c12eb5a4f6ecf696df84c89325dace208
1 ;;;; This file was automatically generated by /home/bill/programming/cl-glfw/generators/make-bindings-from-spec.lisp
3 (in-package #:cl-glfw-opengl)
5 ;;;; ext_framebuffer_blit
7 (defconstant +read-framebuffer-ext+ #x8CA8)
8 (defconstant +draw-framebuffer-ext+ #x8CA9)
9 (defconstant +read-framebuffer-binding-ext+ #x8CA6)
10 (defconstant +draw-framebuffer-binding-ext+ #x8CAA)
11 (defglextfun "BlitFramebufferEXT" blit-framebuffer-ext :return "void" :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 :category "EXT_framebuffer_blit" :version "1.5")