Added initial output of generator scripts.
[cl-glfw/jecs.git] / lib / opengl-ext_pixel_transform.lisp
blob685924d0a6ba51f5c84b2a6f91f94aed96cee358
2 (in-package #:gl)
4 ;;;; EXT_pixel_transform
6 (defconstant +pixel-transform-2d-ext+ #x8330)
7 (defconstant +pixel-mag-filter-ext+ #x8331)
8 (defconstant +pixel-min-filter-ext+ #x8332)
9 (defconstant +pixel-cubic-weight-ext+ #x8333)
10 (defconstant +cubic-ext+ #x8334)
11 (defconstant +average-ext+ #x8335)
12 (defconstant +pixel-transform-2d-stack-depth-ext+ #x8336)
13 (defconstant +max-pixel-transform-2d-stack-depth-ext+ #x8337)
14 (defconstant +pixel-transform-2d-matrix-ext+ #x8338)
15 (defconstant +pixel-transform-2d-ext+ #x8330)
16 (defconstant +pixel-mag-filter-ext+ #x8331)
17 (defconstant +pixel-min-filter-ext+ #x8332)
18 (defconstant +pixel-cubic-weight-ext+ #x8333)
19 (defconstant +cubic-ext+ #x8334)
20 (defconstant +average-ext+ #x8335)
21 (defconstant +pixel-transform-2d-stack-depth-ext+ #x8336)
22 (defconstant +max-pixel-transform-2d-stack-depth-ext+ #x8337)
23 (defconstant +pixel-transform-2d-matrix-ext+ #x8338)
24 (defglextfun
25 (("PixelTransformParameterfvEXT" pixel-transform-parameter-fv-ext) :args
26 ((:name |target| :type |PixelTransformTargetEXT| :direction :in)
27 (:name |pname| :type |PixelTransformPNameEXT| :direction :in)
28 (:name |params| :type |Float32| :direction :in :array t :size #x1))
29 :return ("void") :category ("EXT_pixel_transform") :version ("1.1")
30 :glxropcode ("?") :glsflags ("ignore") :offset ("?")))
31 (defglextfun
32 (("PixelTransformParameterivEXT" pixel-transform-parameter-iv-ext) :args
33 ((:name |target| :type |PixelTransformTargetEXT| :direction :in)
34 (:name |pname| :type |PixelTransformPNameEXT| :direction :in)
35 (:name |params| :type |Int32| :direction :in :array t :size #x1))
36 :return ("void") :category ("EXT_pixel_transform") :version ("1.1")
37 :glxropcode ("?") :glsflags ("ignore") :offset ("?")))
38 (defglextfun
39 (("PixelTransformParameterfEXT" pixel-transform-parameter-f-ext) :args
40 ((:name |target| :type |PixelTransformTargetEXT| :direction :in)
41 (:name |pname| :type |PixelTransformPNameEXT| :direction :in)
42 (:name |param| :type |Float32| :direction :in))
43 :return ("void") :category ("EXT_pixel_transform") :version ("1.1")
44 :glxropcode ("?") :glsflags ("ignore") :offset ("?")))
45 (defglextfun
46 (("PixelTransformParameteriEXT" pixel-transform-parameter-i-ext) :args
47 ((:name |target| :type |PixelTransformTargetEXT| :direction :in)
48 (:name |pname| :type |PixelTransformPNameEXT| :direction :in)
49 (:name |param| :type |Int32| :direction :in))
50 :return ("void") :category ("EXT_pixel_transform") :version ("1.1")
51 :glxropcode ("?") :glsflags ("ignore") :offset ("?")))