Re-ran generator for OpenGL 4.1 and new extensions
[cl-glfw.git] / lib / opengl-arb_vertex_shader.lisp
blob68fb3b19b5f0f1aa16afac4ed49d1f28e94910f6
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_shader
7 (defglextfun "GetAttribLocationARB" get-attrib-location-arb :return "Int32"
8 :args
9 ((:name |programObj| :type |handleARB| :direction :in)
10 (:name |name| :type |charARB| :direction :in :array t))
11 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
12 (defglextfun "GetActiveAttribARB" get-active-attrib-arb :return "void" :args
13 ((:name |programObj| :type |handleARB| :direction :in)
14 (:name |index| :type |UInt32| :direction :in)
15 (:name |maxLength| :type |SizeI| :direction :in)
16 (:name |length| :type |SizeI| :direction :out :array t :size #x1)
17 (:name |size| :type |Int32| :direction :out :array t :size #x1)
18 (:name |type| :type |GLenum| :direction :out :array t :size #x1)
19 (:name |name| :type |charARB| :direction :out :array t))
20 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
21 (defglextfun "BindAttribLocationARB" bind-attrib-location-arb :return "void"
22 :args
23 ((:name |programObj| :type |handleARB| :direction :in)
24 (:name |index| :type |UInt32| :direction :in)
25 (:name |name| :type |charARB| :direction :in :array t))
26 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
27 (make-extension-loader |ARB_vertex_shader|
28 (("GetAttribLocationARB" get-attrib-location-arb :return "Int32" :args
29 ((:name |programObj| :type |handleARB| :direction :in)
30 (:name |name| :type |charARB| :direction :in :array t))
31 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
32 ("GetActiveAttribARB" get-active-attrib-arb :return "void" :args
33 ((:name |programObj| :type |handleARB| :direction :in)
34 (:name |index| :type |UInt32| :direction :in)
35 (:name |maxLength| :type |SizeI| :direction :in)
36 (:name |length| :type |SizeI| :direction :out :array t :size #x1)
37 (:name |size| :type |Int32| :direction :out :array t :size #x1)
38 (:name |type| :type |GLenum| :direction :out :array t :size #x1)
39 (:name |name| :type |charARB| :direction :out :array t))
40 :category "ARB_vertex_shader" :deprecated nil :version "1.2")
41 ("BindAttribLocationARB" bind-attrib-location-arb :return "void" :args
42 ((:name |programObj| :type |handleARB| :direction :in)
43 (:name |index| :type |UInt32| :direction :in)
44 (:name |name| :type |charARB| :direction :in :array t))
45 :category "ARB_vertex_shader" :deprecated nil :version "1.2")))