Formatting of a comment of old code.
[cl-glfw.git] / lib / opengl-ext_blend_color.lisp
blobb0ab0268795db5c43b62e96ed8e97c94e1a60baa
2 (in-package #:gl)
4 ;;;; EXT_blend_color
6 (defglextfun
7 (("BlendColorEXT" blend-color-ext) :args
8 ((:name |red| :type |ClampedColorF| :direction :in)
9 (:name |green| :type |ClampedColorF| :direction :in)
10 (:name |blue| :type |ClampedColorF| :direction :in)
11 (:name |alpha| :type |ClampedColorF| :direction :in))
12 :return ("void") :category ("EXT_blend_color") :version ("1.0") :glxropcode
13 ("4096") :glxflags ("EXT") :extension ("soft") :alias ("BlendColor")
14 :glsalias ("BlendColor")))