bc331da07a430dd1f12cf3626933bcad1f80b4a8
[cl-glfw.git] / lib / opengl-arb_occlusion_query.lisp
blobbc331da07a430dd1f12cf3626933bcad1f80b4a8
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 +query-counter-bits-arb+ #x8864)
12 (defconstant +current-query-arb+ #x8865)
13 (defconstant +query-result-arb+ #x8866)
14 (defconstant +query-result-available-arb+ #x8867)
15 (defconstant +samples-passed-arb+ #x8914)
16 (defglextfun "GetQueryObjectuivARB" get-query-object-uiv-arb :return "void"
17 :args
18 ((:name |id| :type |UInt32| :direction :in)
19 (:name |pname| :type |GLenum| :direction :in)
20 (:name |params| :type |UInt32| :direction :out :array t :size pname))
21 :category "ARB_occlusion_query" :deprecated nil :version "1.5")
22 (defglextfun "GetQueryObjectivARB" get-query-object-iv-arb :return "void" :args
23 ((:name |id| :type |UInt32| :direction :in)
24 (:name |pname| :type |GLenum| :direction :in)
25 (:name |params| :type |Int32| :direction :out :array t :size pname))
26 :category "ARB_occlusion_query" :deprecated nil :version "1.5")
27 (defglextfun "GetQueryivARB" get-query-iv-arb :return "void" :args
28 ((:name |target| :type |GLenum| :direction :in)
29 (:name |pname| :type |GLenum| :direction :in)
30 (:name |params| :type |Int32| :direction :out :array t :size pname))
31 :category "ARB_occlusion_query" :deprecated nil :version "1.5")
32 (defglextfun "EndQueryARB" end-query-arb :return "void" :args
33 ((:name |target| :type |GLenum| :direction :in)) :category
34 "ARB_occlusion_query" :deprecated nil :version "1.5")
35 (defglextfun "BeginQueryARB" begin-query-arb :return "void" :args
36 ((:name |target| :type |GLenum| :direction :in)
37 (:name |id| :type |UInt32| :direction :in))
38 :category "ARB_occlusion_query" :deprecated nil :version "1.5")
39 (defglextfun "IsQueryARB" is-query-arb :return "Boolean" :args
40 ((:name |id| :type |UInt32| :direction :in)) :category "ARB_occlusion_query"
41 :deprecated nil :version "1.5")
42 (defglextfun "DeleteQueriesARB" delete-queries-arb :return "void" :args
43 ((:name |n| :type |SizeI| :direction :in)
44 (:name |ids| :type |UInt32| :direction :in :array t :size n))
45 :category "ARB_occlusion_query" :deprecated nil :version "1.5")
46 (defglextfun "GenQueriesARB" gen-queries-arb :return "void" :args
47 ((:name |n| :type |SizeI| :direction :in)
48 (:name |ids| :type |UInt32| :direction :out :array t :size n))
49 :category "ARB_occlusion_query" :deprecated nil :version "1.5")