Removed unused functions
[cl-glfw.git] / lib / opengl-ext_multi_draw_arrays.lisp
blob188f51cc98fa87d2c1606244925a4632c812f2a7
1 ;;;; This file was automatically generated by nil
3 (in-package #:cl-glfw-opengl)
5 ;;;; ext_multi_draw_arrays
7 (defglextfun
8 (("MultiDrawElementsEXT" multi-draw-elements-ext) :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 :return ("void") :category ("EXT_multi_draw_arrays") :version ("1.1")
16 :glxropcode ("?") :alias ("MultiDrawElements") :glsalias
17 ("MultiDrawElements")))
18 (defglextfun
19 (("MultiDrawArraysEXT" multi-draw-arrays-ext) :args
20 ((:name |mode| :type |BeginMode| :direction :in)
21 (:name |first| :type |Int32| :direction :out :array t :size (|primcount|))
22 (:name |count| :type |SizeI| :direction :out :array t :size (|primcount|))
23 (:name |primcount| :type |SizeI| :direction :in))
24 :return ("void") :category ("EXT_multi_draw_arrays") :version ("1.1")
25 :glxropcode ("?") :alias ("MultiDrawArrays") :glsalias ("MultiDrawArrays")))