Shadowed some foreign type definitions that may clash with CL package.
[cl-glfw/jecs.git] / lib / opengl-ext_polygon_offset.lisp
blobb00b1b7ccc7ee6414838a9221211a33777c9d43c
2 (in-package #:gl)
4 ;;;; EXT_polygon_offset
6 (defconstant +polygon-offset-ext+ #x8037)
7 (defconstant +polygon-offset-factor-ext+ #x8038)
8 (defconstant +polygon-offset-ext+ #x8037)
9 (defconstant +polygon-offset-factor-ext+ #x8038)
10 (defglextfun
11 (("PolygonOffsetEXT" polygon-offset-ext) :args
12 ((:name |factor| :type |Float32| :direction :in)
13 (:name |bias| :type |Float32| :direction :in))
14 :return ("void") :category ("EXT_polygon_offset") :version ("1.0")
15 :glxropcode ("4098") :glxflags ("EXT") :extension ("soft") :glsopcode
16 ("0x0122") :offset ("414")))