Added some forgotten types for export.
[cl-glfw.git] / lib / opengl-ext_point_parameters.lisp
blobd0cf97af6bb449bbe048224ff2a14e124ba21cdf
2 (in-package #:gl)
4 ;;;; EXT_point_parameters
6 (defconstant +point-size-min-ext+ #x8126)
7 (defconstant +point-size-max-ext+ #x8127)
8 (defconstant +point-fade-threshold-size-ext+ #x8128)
9 (defconstant +distance-attenuation-ext+ #x8129)
10 (defglextfun
11 (("PointParameterfvEXT" point-parameter-fv-ext) :args
12 ((:name |pname| :type |PointParameterNameARB| :direction :in)
13 (:name |params| :type |CheckedFloat32| :direction :in :array t :size
14 (|pname|)))
15 :return ("void") :category ("EXT_point_parameters") :version ("1.0")
16 :glxflags ("SGI") :extension nil :alias ("PointParameterfvARB") :glsalias
17 ("PointParameterfvARB")))
18 (defglextfun
19 (("PointParameterfEXT" point-parameter-f-ext) :args
20 ((:name |pname| :type |PointParameterNameARB| :direction :in)
21 (:name |param| :type |CheckedFloat32| :direction :in))
22 :return ("void") :category ("EXT_point_parameters") :version ("1.0")
23 :glxflags ("SGI") :extension nil :alias ("PointParameterfARB") :glsalias
24 ("PointParameterfARB")))