Added Win+Mac notes. Some wishlist aswell.
[cl-glfw/jecs.git] / lib / opengl-nv_occlusion_query.lisp
blob3bf887f30145928c75321625b97548795d038b6b
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_occlusion_query
7 (defconstant +pixel-counter-bits-nv+ #x8864)
8 (defconstant +current-occlusion-query-id-nv+ #x8865)
9 (defconstant +pixel-count-nv+ #x8866)
10 (defconstant +pixel-count-available-nv+ #x8867)
11 (defglextfun "GetOcclusionQueryuivNV" get-occlusion-query-uiv-nv :return "void"
12 :args
13 ((:name |id| :type |UInt32| :direction :in)
14 (:name |pname| :type |OcclusionQueryParameterNameNV| :direction :in)
15 (:name |params| :type |UInt32| :direction :out :array t :size (|pname|)))
16 :category "NV_occlusion_query" :version "1.2")
17 (defglextfun "GetOcclusionQueryivNV" get-occlusion-query-iv-nv :return "void"
18 :args
19 ((:name |id| :type |UInt32| :direction :in)
20 (:name |pname| :type |OcclusionQueryParameterNameNV| :direction :in)
21 (:name |params| :type |Int32| :direction :out :array t :size (|pname|)))
22 :category "NV_occlusion_query" :version "1.2")
23 (defglextfun "EndOcclusionQueryNV" end-occlusion-query-nv :return "void" :args
24 nil :category "NV_occlusion_query" :version "1.2")
25 (defglextfun "BeginOcclusionQueryNV" begin-occlusion-query-nv :return "void"
26 :args ((:name |id| :type |UInt32| :direction :in)) :category
27 "NV_occlusion_query" :version "1.2")
28 (defglextfun "IsOcclusionQueryNV" is-occlusion-query-nv :return "Boolean" :args
29 ((:name |id| :type |UInt32| :direction :in)) :category "NV_occlusion_query"
30 :version "1.2")
31 (defglextfun "DeleteOcclusionQueriesNV" delete-occlusion-queries-nv :return
32 "void" :args
33 ((:name |n| :type |SizeI| :direction :in)
34 (:name |ids| :type |UInt32| :direction :in :array t :size n))
35 :category "NV_occlusion_query" :version "1.2")
36 (defglextfun "GenOcclusionQueriesNV" gen-occlusion-queries-nv :return "void"
37 :args
38 ((:name |n| :type |SizeI| :direction :in)
39 (:name |ids| :type |UInt32| :direction :out :array t :size n))
40 :category "NV_occlusion_query" :version "1.2")