Shadowed some foreign type definitions that may clash with CL package.
[cl-glfw/jecs.git] / lib / opengl-sgis_fog_function.lisp
blob0659147f10446fb3663aba76f2a0a2f51fb9e918
2 (in-package #:gl)
4 ;;;; SGIS_fog_function
6 (defglextfun
7 (("GetFogFuncSGIS" get-fog-func-sgis) :args
8 ((:name |points| :type |Float32| :direction :out :array t)) :return ("void")
9 :category ("SGIS_fog_function") :version ("1.1") :dlflags ("notlistable")
10 :glxflags ("ignore") :extension nil :glsflags ("get") :glsopcode ("0x0191")
11 :offset nil))
12 (defglextfun
13 (("FogFuncSGIS" fog-func-sgis) :args
14 ((:name |n| :type |SizeI| :direction :in)
15 (:name |points| :type |Float32| :direction :in :array t :size n*2))
16 :return ("void") :category ("SGIS_fog_function") :version ("1.1") :glxflags
17 ("SGI") :glxropcode ("2067") :extension nil :glsopcode ("0x0179") :offset
18 nil))