Fixed name of opengl package. I thought this was committed already!
[cl-glfw/jecs.git] / lib / opengl-apple_element_array.lisp
bloba0fa51c2a8373f9a843291de2d755e55dcbe5a2b
2 (in-package #:gl)
4 ;;;; APPLE_element_array
6 (defconstant +element-array-apple+ #x8768)
7 (defconstant +element-array-type-apple+ #x8769)
8 (defconstant +element-array-pointer-apple+ #x876A)
9 (defglextfun
10 (("MultiDrawRangeElementArrayAPPLE" multi-draw-range-element-array-apple)
11 :args
12 ((:name |mode| :type |BeginMode| :direction :in)
13 (:name |start| :type |UInt32| :direction :in)
14 (:name |end| :type |UInt32| :direction :in)
15 (:name |first| :type |Int32| :direction :in :array t :size primcount)
16 (:name |count| :type |SizeI| :direction :in :array t :size primcount)
17 (:name |primcount| :type |SizeI| :direction :in))
18 :return ("void") :category ("APPLE_element_array") :version ("1.2")
19 :extension nil :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?")
20 :offset ("?")))
21 (defglextfun
22 (("MultiDrawElementArrayAPPLE" multi-draw-element-array-apple) :args
23 ((:name |mode| :type |BeginMode| :direction :in)
24 (:name |first| :type |Int32| :direction :in :array t :size primcount)
25 (:name |count| :type |SizeI| :direction :in :array t :size primcount)
26 (:name |primcount| :type |SizeI| :direction :in))
27 :return ("void") :category ("APPLE_element_array") :version ("1.2")
28 :extension nil :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?")
29 :offset ("?")))
30 (defglextfun
31 (("DrawRangeElementArrayAPPLE" draw-range-element-array-apple) :args
32 ((:name |mode| :type |BeginMode| :direction :in)
33 (:name |start| :type |UInt32| :direction :in)
34 (:name |end| :type |UInt32| :direction :in)
35 (:name |first| :type |Int32| :direction :in)
36 (:name |count| :type |SizeI| :direction :in))
37 :return ("void") :category ("APPLE_element_array") :version ("1.2")
38 :extension nil :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?")
39 :offset ("?")))
40 (defglextfun
41 (("DrawElementArrayAPPLE" draw-element-array-apple) :args
42 ((:name |mode| :type |BeginMode| :direction :in)
43 (:name |first| :type |Int32| :direction :in)
44 (:name |count| :type |SizeI| :direction :in))
45 :return ("void") :category ("APPLE_element_array") :version ("1.2")
46 :extension nil :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?")
47 :offset ("?")))
48 (defglextfun
49 (("ElementPointerAPPLE" element-pointer-apple) :args
50 ((:name |type| :type |ElementPointerTypeATI| :direction :in)
51 (:name |pointer| :type |Void| :direction :in :array t :size type))
52 :return ("void") :category ("APPLE_element_array") :version ("1.2")
53 :extension nil :glxropcode ("?") :glxflags ("ignore") :glsopcode ("?")
54 :offset ("?")))