Added initial output of generator scripts.
[cl-glfw.git] / lib / opengl-arb_color_buffer_float.lisp
blob257e9250262a587356093f05904e827b8c752ed0
2 (in-package #:gl)
4 ;;;; ARB_color_buffer_float
6 (defconstant +rgba-float-mode-arb+ #x8820)
7 (defconstant +clamp-vertex-color-arb+ #x891A)
8 (defconstant +clamp-fragment-color-arb+ #x891B)
9 (defconstant +clamp-read-color-arb+ #x891C)
10 (defconstant +fixed-only-arb+ #x891D)
11 (defglextfun
12 (("ClampColorARB" clamp-color-arb) :args
13 ((:name |target| :type |ClampColorTargetARB| :direction :in)
14 (:name |clamp| :type |ClampColorModeARB| :direction :in))
15 :return ("void") :category ("ARB_color_buffer_float") :version ("1.5")
16 :extension nil :glxropcode ("234") :glxflags ("ignore") :glsopcode ("?")
17 :offset ("?")))