079cb6cd663d90de448c694ed747a85f8a85408b
[cl-glfw.git] / lib / opengl-arb_draw_instanced.lisp
blob079cb6cd663d90de448c694ed747a85f8a85408b
1 ;;;; This file was automatically generated by /home/bill/programming/cl-glfw/generators/make-bindings-from-spec.lisp
3 (in-package #:cl-glfw-opengl)
5 ;;;; arb_draw_instanced
7 (defglextfun "DrawElementsInstancedARB" draw-elements-instanced-arb :return
8 "void" :args
9 ((:name |mode| :type |BeginMode| :direction :in)
10 (:name |count| :type |SizeI| :direction :in)
11 (:name |type| :type |DrawElementsType| :direction :in)
12 (:name |indices| :type |Void| :direction :in :array t :size (|count| |type|))
13 (:name |primcount| :type |SizeI| :direction :in))
14 :category "ARB_draw_instanced" :deprecated nil :version "2.0")
15 (defglextfun "DrawArraysInstancedARB" draw-arrays-instanced-arb :return "void"
16 :args
17 ((:name |mode| :type |BeginMode| :direction :in)
18 (:name |first| :type |Int32| :direction :in)
19 (:name |count| :type |SizeI| :direction :in)
20 (:name |primcount| :type |SizeI| :direction :in))
21 :category "ARB_draw_instanced" :deprecated nil :version "2.0")