Re-ran generator for OpenGL 4.1 and new extensions
[cl-glfw.git] / lib / opengl-ext_multi_draw_arrays.lisp
blob928f3e471b79b8c3e60bf5ae0538d3b6b02dbb69
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 ;;;; ext_multi_draw_arrays
7 (defglextfun "MultiDrawElementsEXT" multi-draw-elements-ext :return "void"
8 :args
9 ((:name |mode| :type |BeginMode| :direction :in)
10 (:name |count| :type |SizeI| :direction :in :array t :size (|primcount|))
11 (:name |type| :type |DrawElementsType| :direction :in)
12 (:name |indices| :type |VoidPointer| :direction :in :array t :size
13 (|primcount|))
14 (:name |primcount| :type |SizeI| :direction :in))
15 :category "EXT_multi_draw_arrays" :deprecated nil :version "1.1")
16 (defglextfun "MultiDrawArraysEXT" multi-draw-arrays-ext :return "void" :args
17 ((:name |mode| :type |BeginMode| :direction :in)
18 (:name |first| :type |Int32| :direction :in :array t :size (|primcount|))
19 (:name |count| :type |SizeI| :direction :in :array t :size (|primcount|))
20 (:name |primcount| :type |SizeI| :direction :in))
21 :category "EXT_multi_draw_arrays" :deprecated nil :version "1.1")
22 (make-extension-loader |EXT_multi_draw_arrays|
23 (("MultiDrawElementsEXT" multi-draw-elements-ext :return "void" :args
24 ((:name |mode| :type |BeginMode| :direction :in)
25 (:name |count| :type |SizeI| :direction :in :array t :size (|primcount|))
26 (:name |type| :type |DrawElementsType| :direction :in)
27 (:name |indices| :type |VoidPointer| :direction :in :array t :size
28 (|primcount|))
29 (:name |primcount| :type |SizeI| :direction :in))
30 :category "EXT_multi_draw_arrays" :deprecated nil :version "1.1")
31 ("MultiDrawArraysEXT" multi-draw-arrays-ext :return "void" :args
32 ((:name |mode| :type |BeginMode| :direction :in)
33 (:name |first| :type |Int32| :direction :in :array t :size (|primcount|))
34 (:name |count| :type |SizeI| :direction :in :array t :size (|primcount|))
35 (:name |primcount| :type |SizeI| :direction :in))
36 :category "EXT_multi_draw_arrays" :deprecated nil :version "1.1")))