Added initial output of generator scripts.
[cl-glfw.git] / lib / opengl-sgis_sharpen_texture.lisp
blob2c61d7c0c1f39f72e70cfb99fdad51565853dfa5
2 (in-package #:gl)
4 ;;;; SGIS_sharpen_texture
6 (defglextfun
7 (("GetSharpenTexFuncSGIS" get-sharpen-tex-func-sgis) :args
8 ((:name |target| :type |TextureTarget| :direction :in)
9 (:name |points| :type |Float32| :direction :out :array t :size (|target|)))
10 :return ("void") :category ("SGIS_sharpen_texture") :dlflags ("notlistable")
11 :version ("1.0") :glxflags ("SGI") :glxvendorpriv ("4097") :extension nil
12 :glsflags ("get") :glsopcode ("0x0166") :offset ("445")))
13 (defglextfun
14 (("SharpenTexFuncSGIS" sharpen-tex-func-sgis) :args
15 ((:name |target| :type |TextureTarget| :direction :in)
16 (:name |n| :type |SizeI| :direction :in)
17 (:name |points| :type |Float32| :direction :in :array t :size n*2))
18 :return ("void") :category ("SGIS_sharpen_texture") :glxflags ("SGI")
19 :version ("1.0") :glxropcode ("2052") :extension nil :glsopcode ("0x0165")
20 :offset ("444")))