Fixed package name
[cl-glfw.git] / lib / opengl-ati_separate_stencil.lisp
blob4396ce0c870ce92ae5344acf723b8834165b071e
2 (in-package #:gl)
4 ;;;; ATI_separate_stencil
6 (defconstant +stencil-back-func-ati+ #x8800)
7 (defconstant +stencil-back-fail-ati+ #x8801)
8 (defconstant +stencil-back-pass-depth-fail-ati+ #x8802)
9 (defconstant +stencil-back-pass-depth-pass-ati+ #x8803)
10 (defglextfun
11 (("StencilFuncSeparateATI" stencil-func-separate-ati) :args
12 ((:name |frontfunc| :type |StencilFunction| :direction :in)
13 (:name |backfunc| :type |StencilFunction| :direction :in)
14 (:name |ref| :type |ClampedStencilValue| :direction :in)
15 (:name |mask| :type |MaskedStencilValue| :direction :in))
16 :return ("void") :category ("ATI_separate_stencil") :version ("1.2")
17 :extension nil :glxropcode ("?") :glxflags ("ignore") :alias
18 ("StencilFuncSeparate") :glsalias ("StencilFuncSeparate")))
19 (defglextfun
20 (("StencilOpSeparateATI" stencil-op-separate-ati) :args
21 ((:name |face| :type |StencilFaceDirection| :direction :in)
22 (:name |sfail| :type |StencilOp| :direction :in)
23 (:name |dpfail| :type |StencilOp| :direction :in)
24 (:name |dppass| :type |StencilOp| :direction :in))
25 :return ("void") :category ("ATI_separate_stencil") :version ("1.2")
26 :extension nil :glxropcode ("?") :glxflags ("ignore") :alias
27 ("StencilOpSeparate") :glsalias ("StencilOpSeparate")))