Added FTGL for convenience
[cl-glfw.git] / lib / opengl-arb_vertex_array_object.lisp
blobf76f95b3a2112a9920a537017870361dd02d36ab
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_vertex_array_object
7 (defconstant +vertex-array-binding+ #x85B5)
8 (defglextfun "IsVertexArray" is-vertex-array :return "Boolean" :args
9 ((:name |array| :type |UInt32| :direction :in)) :category
10 "ARB_vertex_array_object" :deprecated nil :version "3.0")
11 (defglextfun "GenVertexArrays" gen-vertex-arrays :return "void" :args
12 ((:name |n| :type |SizeI| :direction :in)
13 (:name |arrays| :type |UInt32| :direction :out :array t :size n))
14 :category "ARB_vertex_array_object" :deprecated nil :version "3.0")
15 (defglextfun "DeleteVertexArrays" delete-vertex-arrays :return "void" :args
16 ((:name |n| :type |SizeI| :direction :in)
17 (:name |arrays| :type |UInt32| :direction :in :array t :size n))
18 :category "ARB_vertex_array_object" :deprecated nil :version "3.0")
19 (defglextfun "BindVertexArray" bind-vertex-array :return "void" :args
20 ((:name |array| :type |UInt32| :direction :in)) :category
21 "ARB_vertex_array_object" :deprecated nil :version "3.0")