Added Win+Mac notes. Some wishlist aswell.
[cl-glfw/jecs.git] / lib / opengl-nv_parameter_buffer_object.lisp
blobcdef93a9a8684097a6462aac1f01004844d97df2
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 ;;;; nv_parameter_buffer_object
7 (defconstant +max-program-parameter-buffer-bindings-nv+ #x8DA0)
8 (defconstant +max-program-parameter-buffer-size-nv+ #x8DA1)
9 (defconstant +vertex-program-parameter-buffer-nv+ #x8DA2)
10 (defconstant +geometry-program-parameter-buffer-nv+ #x8DA3)
11 (defconstant +fragment-program-parameter-buffer-nv+ #x8DA4)
12 (defglextfun "ProgramBufferParametersIuivNV" program-buffer-parameters-i-uiv-nv
13 :return "void" :args
14 ((:name |target| :type |ProgramTarget| :direction :in)
15 (:name |buffer| :type |UInt32| :direction :in)
16 (:name |index| :type |UInt32| :direction :in)
17 (:name |count| :type |SizeI| :direction :in)
18 (:name |params| :type |UInt32| :direction :in :array t :size count))
19 :category "NV_parameter_buffer_object" :version "1.2")
20 (defglextfun "ProgramBufferParametersIivNV" program-buffer-parameters-i-iv-nv
21 :return "void" :args
22 ((:name |target| :type |ProgramTarget| :direction :in)
23 (:name |buffer| :type |UInt32| :direction :in)
24 (:name |index| :type |UInt32| :direction :in)
25 (:name |count| :type |SizeI| :direction :in)
26 (:name |params| :type |Int32| :direction :in :array t :size count))
27 :category "NV_parameter_buffer_object" :version "1.2")
28 (defglextfun "ProgramBufferParametersfvNV" program-buffer-parameters-fv-nv
29 :return "void" :args
30 ((:name |target| :type |ProgramTarget| :direction :in)
31 (:name |buffer| :type |UInt32| :direction :in)
32 (:name |index| :type |UInt32| :direction :in)
33 (:name |count| :type |SizeI| :direction :in)
34 (:name |params| :type |Float32| :direction :in :array t :size count))
35 :category "NV_parameter_buffer_object" :version "1.2")