Added initial output of generator scripts.
[cl-glfw.git] / lib / opengl-ext_blend_equation_separate.lisp
blob80128cd7fade44606de3e413f4f4f4739028ce85
2 (in-package #:gl)
4 ;;;; EXT_blend_equation_separate
6 (defconstant +blend-equation-rgb-ext+ #x8009)
7 (defconstant +blend-equation-alpha-ext+ #x883D)
8 (defglextfun
9 (("BlendEquationSeparateEXT" blend-equation-separate-ext) :args
10 ((:name |modeRGB| :type |BlendEquationModeEXT| :direction :in)
11 (:name |modeAlpha| :type |BlendEquationModeEXT| :direction :in))
12 :return ("void") :category ("EXT_blend_equation_separate") :version ("1.2")
13 :extension nil :glxropcode ("4228") :alias ("BlendEquationSeparate")
14 :glsalias ("BlendEquationSeparate")))