Added extra test platform.
[cl-glfw.git] / lib / opengl-ati_envmap_bumpmap.lisp
blob35d80c431455a3477caf5e9bde74d8b2f0517203
2 (in-package #:gl)
4 ;;;; ATI_envmap_bumpmap
6 (defconstant +bump-rot-matrix-ati+ #x8775)
7 (defconstant +bump-rot-matrix-size-ati+ #x8776)
8 (defconstant +bump-num-tex-units-ati+ #x8777)
9 (defconstant +bump-tex-units-ati+ #x8778)
10 (defconstant +dudv-ati+ #x8779)
11 (defconstant +du8dv8-ati+ #x877A)
12 (defconstant +bump-envmap-ati+ #x877B)
13 (defconstant +bump-target-ati+ #x877C)
14 (defglextfun
15 (("GetTexBumpParameterfvATI" get-tex-bump-parameter-fv-ati) :args
16 ((:name |pname| :type |GetTexBumpParameterATI| :direction :in)
17 (:name |param| :type |Float32| :direction :out :array t :size (|pname|)))
18 :return ("void") :category ("ATI_envmap_bumpmap") :dlflags ("notlistable")
19 :version ("1.2") :extension nil :glxsingle ("?") :glxflags ("ignore")
20 :glsflags ("ignore" "get") :offset ("?")))
21 (defglextfun
22 (("GetTexBumpParameterivATI" get-tex-bump-parameter-iv-ati) :args
23 ((:name |pname| :type |GetTexBumpParameterATI| :direction :in)
24 (:name |param| :type |Int32| :direction :out :array t :size (|pname|)))
25 :return ("void") :category ("ATI_envmap_bumpmap") :dlflags ("notlistable")
26 :version ("1.2") :extension nil :glxsingle ("?") :glxflags ("ignore")
27 :glsflags ("ignore" "get") :offset ("?")))
28 (defglextfun
29 (("TexBumpParameterfvATI" tex-bump-parameter-fv-ati) :args
30 ((:name |pname| :type |TexBumpParameterATI| :direction :in)
31 (:name |param| :type |Float32| :direction :in :array t :size (|pname|)))
32 :return ("void") :category ("ATI_envmap_bumpmap") :version ("1.2") :extension
33 nil :glxropcode ("?") :glxflags ("ignore") :glsflags ("ignore") :offset
34 ("?")))
35 (defglextfun
36 (("TexBumpParameterivATI" tex-bump-parameter-iv-ati) :args
37 ((:name |pname| :type |TexBumpParameterATI| :direction :in)
38 (:name |param| :type |Int32| :direction :in :array t :size (|pname|)))
39 :return ("void") :category ("ATI_envmap_bumpmap") :version ("1.2") :extension
40 nil :glxropcode ("?") :glxflags ("ignore") :glsflags ("ignore") :offset
41 ("?")))