Added FTGL for convenience
[cl-glfw.git] / lib / opengl-arb_vertex_shader.lisp
blob4bdb676e55f02c8c8c89c3d8fb3f05d8af405975
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")