Re-ran generator for OpenGL 4.1 and new extensions
[cl-glfw.git] / lib / opengl-ext_texture_object.lisp
blob76346d93b7d55d41416b9685239f7b4927d2c952
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 ;;;; ext_texture_object
7 (defconstant +texture-priority-ext+ #x8066)
8 (defconstant +texture-resident-ext+ #x8067)
9 (defconstant +texture-1d-binding-ext+ #x8068)
10 (defconstant +texture-2d-binding-ext+ #x8069)
11 (defconstant +pack-skip-images+ #x806B)
12 (defconstant +pack-image-height+ #x806C)
13 (defconstant +unpack-skip-images+ #x806D)
14 (defconstant +unpack-image-height+ #x806E)
15 (defconstant +texture-3d+ #x806F)
16 (defconstant +proxy-texture-3d+ #x8070)
17 (defconstant +texture-depth+ #x8071)
18 (defconstant +texture-wrap-r+ #x8072)
19 (defconstant +max-3d-texture-size+ #x8073)
20 (defconstant +texture-priority-ext+ #x8066)
21 (defconstant +texture-resident-ext+ #x8067)
22 (defconstant +texture-1d-binding-ext+ #x8068)
23 (defconstant +texture-2d-binding-ext+ #x8069)
24 (defglextfun "PrioritizeTexturesEXT" prioritize-textures-ext :return "void"
25 :args
26 ((:name |n| :type |SizeI| :direction :in)
27 (:name |textures| :type |Texture| :direction :in :array t :size n)
28 (:name |priorities| :type |ClampedFloat32| :direction :in :array t :size n))
29 :category "EXT_texture_object" :deprecated nil :version "1.0")
30 (defglextfun "IsTextureEXT" is-texture-ext :return "Boolean" :args
31 ((:name |texture| :type |Texture| :direction :in)) :category
32 "EXT_texture_object" :deprecated nil :version "1.0")
33 (defglextfun "GenTexturesEXT" gen-textures-ext :return "void" :args
34 ((:name |n| :type |SizeI| :direction :in)
35 (:name |textures| :type |Texture| :direction :out :array t :size n))
36 :category "EXT_texture_object" :deprecated nil :version "1.0")
37 (defglextfun "DeleteTexturesEXT" delete-textures-ext :return "void" :args
38 ((:name |n| :type |SizeI| :direction :in)
39 (:name |textures| :type |Texture| :direction :in :array t :size n))
40 :category "EXT_texture_object" :deprecated nil :version "1.0")
41 (defglextfun "BindTextureEXT" bind-texture-ext :return "void" :args
42 ((:name |target| :type |TextureTarget| :direction :in)
43 (:name |texture| :type |Texture| :direction :in))
44 :category "EXT_texture_object" :deprecated nil :version "1.0")
45 (defglextfun "AreTexturesResidentEXT" are-textures-resident-ext :return
46 "Boolean" :args
47 ((:name |n| :type |SizeI| :direction :in)
48 (:name |textures| :type |Texture| :direction :in :array t :size n)
49 (:name |residences| :type |Boolean| :direction :out :array t :size n))
50 :category "EXT_texture_object" :deprecated nil :version "1.0")
51 (make-extension-loader |EXT_texture_object|
52 (("PrioritizeTexturesEXT" prioritize-textures-ext :return "void" :args
53 ((:name |n| :type |SizeI| :direction :in)
54 (:name |textures| :type |Texture| :direction :in :array t :size n)
55 (:name |priorities| :type |ClampedFloat32| :direction :in :array t :size
56 n))
57 :category "EXT_texture_object" :deprecated nil :version "1.0")
58 ("IsTextureEXT" is-texture-ext :return "Boolean" :args
59 ((:name |texture| :type |Texture| :direction :in)) :category
60 "EXT_texture_object" :deprecated nil :version "1.0")
61 ("GenTexturesEXT" gen-textures-ext :return "void" :args
62 ((:name |n| :type |SizeI| :direction :in)
63 (:name |textures| :type |Texture| :direction :out :array t :size n))
64 :category "EXT_texture_object" :deprecated nil :version "1.0")
65 ("DeleteTexturesEXT" delete-textures-ext :return "void" :args
66 ((:name |n| :type |SizeI| :direction :in)
67 (:name |textures| :type |Texture| :direction :in :array t :size n))
68 :category "EXT_texture_object" :deprecated nil :version "1.0")
69 ("BindTextureEXT" bind-texture-ext :return "void" :args
70 ((:name |target| :type |TextureTarget| :direction :in)
71 (:name |texture| :type |Texture| :direction :in))
72 :category "EXT_texture_object" :deprecated nil :version "1.0")
73 ("AreTexturesResidentEXT" are-textures-resident-ext :return "Boolean" :args
74 ((:name |n| :type |SizeI| :direction :in)
75 (:name |textures| :type |Texture| :direction :in :array t :size n)
76 (:name |residences| :type |Boolean| :direction :out :array t :size n))
77 :category "EXT_texture_object" :deprecated nil :version "1.0")))