Fixed the nil names of the generator.
[cl-glfw/dh.git] / lib / opengl-arb_occlusion_query.lisp
blobae1a949f43d9e9a2107b7abcbb1774f8b73e148f
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_occlusion_query
7 (defconstant +query-counter-bits-arb+ #x8864)
8 (defconstant +current-query-arb+ #x8865)
9 (defconstant +query-result-arb+ #x8866)
10 (defconstant +query-result-available-arb+ #x8867)
11 (defconstant +samples-passed-arb+ #x8914)
12 (defglextfun
13 (("GetQueryObjectuivARB" get-query-object-uiv-arb) :args
14 ((:name |id| :type |UInt32| :direction :in)
15 (:name |pname| :type |GLenum| :direction :in)
16 (:name |params| :type |UInt32| :direction :out :array t :size pname))
17 :return ("void") :category ("ARB_occlusion_query") :dlflags ("notlistable")
18 :version ("1.5") :extension nil :alias ("GetQueryObjectuiv") :glsalias
19 ("GetQueryObjectuiv")))
20 (defglextfun
21 (("GetQueryObjectivARB" get-query-object-iv-arb) :args
22 ((:name |id| :type |UInt32| :direction :in)
23 (:name |pname| :type |GLenum| :direction :in)
24 (:name |params| :type |Int32| :direction :out :array t :size pname))
25 :return ("void") :category ("ARB_occlusion_query") :dlflags ("notlistable")
26 :version ("1.5") :extension nil :alias ("GetQueryObjectiv") :glsalias
27 ("GetQueryObjectiv")))
28 (defglextfun
29 (("GetQueryivARB" get-query-iv-arb) :args
30 ((:name |target| :type |GLenum| :direction :in)
31 (:name |pname| :type |GLenum| :direction :in)
32 (:name |params| :type |Int32| :direction :out :array t :size pname))
33 :return ("void") :category ("ARB_occlusion_query") :dlflags ("notlistable")
34 :version ("1.5") :extension nil :alias ("GetQueryiv") :glsalias
35 ("GetQueryiv")))
36 (defglextfun
37 (("EndQueryARB" end-query-arb) :args
38 ((:name |target| :type |GLenum| :direction :in)) :return ("void") :category
39 ("ARB_occlusion_query") :version ("1.5") :extension nil :alias ("EndQuery")
40 :glsalias ("EndQuery")))
41 (defglextfun
42 (("BeginQueryARB" begin-query-arb) :args
43 ((:name |target| :type |GLenum| :direction :in)
44 (:name |id| :type |UInt32| :direction :in))
45 :return ("void") :category ("ARB_occlusion_query") :version ("1.5")
46 :extension nil :alias ("BeginQuery") :glsalias ("BeginQuery")))
47 (defglextfun
48 (("IsQueryARB" is-query-arb) :args
49 ((:name |id| :type |UInt32| :direction :in)) :return ("Boolean") :category
50 ("ARB_occlusion_query") :version ("1.5") :extension nil :alias ("IsQuery")
51 :glsalias ("IsQuery")))
52 (defglextfun
53 (("DeleteQueriesARB" delete-queries-arb) :args
54 ((:name |n| :type |SizeI| :direction :in)
55 (:name |ids| :type |UInt32| :direction :in :array t :size n))
56 :return ("void") :category ("ARB_occlusion_query") :version ("1.5")
57 :extension nil :alias ("DeleteQueries") :glsalias ("DeleteQueries")))
58 (defglextfun
59 (("GenQueriesARB" gen-queries-arb) :args
60 ((:name |n| :type |SizeI| :direction :in)
61 (:name |ids| :type |UInt32| :direction :out :array t :size n))
62 :return ("void") :category ("ARB_occlusion_query") :version ("1.5")
63 :extension nil :alias ("GenQueries") :glsalias ("GenQueries")))