Added multi-threading example.
[cl-glfw.git] / lib / opengl-ext_blend_func_separate.lisp
blob7afeccc46ce787551c4049e45bbe969e1c244fc6
2 (in-package #:gl)
4 ;;;; EXT_blend_func_separate
6 (defconstant +blend-dst-rgb-ext+ #x80C8)
7 (defconstant +blend-src-rgb-ext+ #x80C9)
8 (defconstant +blend-dst-alpha-ext+ #x80CA)
9 (defconstant +blend-src-alpha-ext+ #x80CB)
10 (defglextfun
11 (("BlendFuncSeparateEXT" blend-func-separate-ext) :args
12 ((:name |sfactorRGB| :type |BlendFuncSeparateParameterEXT| :direction :in)
13 (:name |dfactorRGB| :type |BlendFuncSeparateParameterEXT| :direction :in)
14 (:name |sfactorAlpha| :type |BlendFuncSeparateParameterEXT| :direction :in)
15 (:name |dfactorAlpha| :type |BlendFuncSeparateParameterEXT| :direction :in))
16 :return ("void") :category ("EXT_blend_func_separate") :glxropcode ("4134")
17 :version ("1.0") :extension nil :alias ("BlendFuncSeparate") :glsalias
18 ("BlendFuncSeparate")))