Shadowed some foreign type definitions that may clash with CL package.
[cl-glfw/jecs.git] / lib / opengl-arb_draw_buffers.lisp
blobed3b5d8b650cab62249c5ad5c10a06ef020dac94
2 (in-package #:gl)
4 ;;;; ARB_draw_buffers
6 (defconstant +max-draw-buffers-arb+ #x8824)
7 (defconstant +draw-buffer0-arb+ #x8825)
8 (defconstant +draw-buffer1-arb+ #x8826)
9 (defconstant +draw-buffer2-arb+ #x8827)
10 (defconstant +draw-buffer3-arb+ #x8828)
11 (defconstant +draw-buffer4-arb+ #x8829)
12 (defconstant +draw-buffer5-arb+ #x882A)
13 (defconstant +draw-buffer6-arb+ #x882B)
14 (defconstant +draw-buffer7-arb+ #x882C)
15 (defconstant +draw-buffer8-arb+ #x882D)
16 (defconstant +draw-buffer9-arb+ #x882E)
17 (defconstant +draw-buffer10-arb+ #x882F)
18 (defconstant +draw-buffer11-arb+ #x8830)
19 (defconstant +draw-buffer12-arb+ #x8831)
20 (defconstant +draw-buffer13-arb+ #x8832)
21 (defconstant +draw-buffer14-arb+ #x8833)
22 (defconstant +draw-buffer15-arb+ #x8834)
23 (defglextfun
24 (("DrawBuffersARB" draw-buffers-arb) :args
25 ((:name |n| :type |SizeI| :direction :in)
26 (:name |bufs| :type |DrawBufferModeATI| :direction :in :array t :size n))
27 :return ("void") :category ("ARB_draw_buffers") :version ("1.5") :extension
28 nil :alias ("DrawBuffers") :glsalias ("DrawBuffers")))