Fixed the nil names of the generator.
[cl-glfw/dh.git] / lib / opengl-ext_texture_object.lisp
blob52d33538a8a358f9de4d7e0ceb5c66560ba5ebc1
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 +texture-priority-ext+ #x8066)
12 (defconstant +texture-resident-ext+ #x8067)
13 (defconstant +texture-1d-binding-ext+ #x8068)
14 (defconstant +texture-2d-binding-ext+ #x8069)
15 (defglextfun
16 (("PrioritizeTexturesEXT" prioritize-textures-ext) :args
17 ((:name |n| :type |SizeI| :direction :in)
18 (:name |textures| :type |Texture| :direction :in :array t :size n)
19 (:name |priorities| :type |ClampedFloat32| :direction :in :array t :size n))
20 :return ("void") :category ("EXT_texture_object") :glxflags ("EXT") :version
21 ("1.0") :glxropcode ("4118") :extension nil :alias ("PrioritizeTextures")
22 :glsalias ("PrioritizeTextures")))
23 (defglextfun
24 (("IsTextureEXT" is-texture-ext) :args
25 ((:name |texture| :type |Texture| :direction :in)) :return ("Boolean")
26 :category ("EXT_texture_object") :dlflags ("notlistable") :version ("1.0")
27 :glxflags ("EXT") :glxvendorpriv ("14") :extension nil :glsflags ("get")
28 :glsopcode ("0x014B") :offset ("441")))
29 (defglextfun
30 (("GenTexturesEXT" gen-textures-ext) :args
31 ((:name |n| :type |SizeI| :direction :in)
32 (:name |textures| :type |Texture| :direction :out :array t :size n))
33 :return ("void") :category ("EXT_texture_object") :dlflags ("notlistable")
34 :version ("1.0") :glxflags ("EXT") :glxvendorpriv ("13") :extension nil
35 :glsopcode ("0x014A") :offset ("440")))
36 (defglextfun
37 (("DeleteTexturesEXT" delete-textures-ext) :args
38 ((:name |n| :type |SizeI| :direction :in)
39 (:name |textures| :type |Texture| :direction :in :array t :size n))
40 :return ("void") :category ("EXT_texture_object") :dlflags ("notlistable")
41 :version ("1.0") :glxflags ("EXT") :glxvendorpriv ("12") :extension nil
42 :glsopcode ("0x0149") :offset ("561")))
43 (defglextfun
44 (("BindTextureEXT" bind-texture-ext) :args
45 ((:name |target| :type |TextureTarget| :direction :in)
46 (:name |texture| :type |Texture| :direction :in))
47 :return ("void") :category ("EXT_texture_object") :version ("1.0") :glxflags
48 ("EXT") :glxropcode ("4117") :extension nil :alias ("BindTexture") :glsalias
49 ("BindTexture")))
50 (defglextfun
51 (("AreTexturesResidentEXT" are-textures-resident-ext) :args
52 ((:name |n| :type |SizeI| :direction :in)
53 (:name |textures| :type |Texture| :direction :in :array t :size n)
54 (:name |residences| :type |Boolean| :direction :out :array t :size n))
55 :return ("Boolean") :category ("EXT_texture_object") :glxflags ("EXT")
56 :glxvendorpriv ("11") :dlflags ("notlistable") :version ("1.0") :extension
57 nil :glsflags ("get") :glsopcode ("0x0147") :offset ("439")))