Shadowed some foreign type definitions that may clash with CL package.
[cl-glfw/jecs.git] / lib / opengl-ext_timer_query.lisp
blob5de3900fe9406d388ba1d1a9b9028bc028efc1f5
2 (in-package #:gl)
4 ;;;; EXT_timer_query
6 (defconstant +time-elapsed-ext+ #x88BF)
7 (defglextfun
8 (("GetQueryObjectui64vEXT" get-query-objectui-64v-ext) :args
9 ((:name |id| :type |UInt32| :direction :in)
10 (:name |pname| :type |GLenum| :direction :in)
11 (:name |params| :type |UInt64EXT| :direction :out :array t :size pname))
12 :return ("void") :category ("EXT_timer_query") :dlflags ("notlistable")
13 :version ("1.5") :glxvendorpriv ("1329") :glxflags ("ignore") :glsflags
14 ("get") :glsopcode ("?") :offset ("?")))
15 (defglextfun
16 (("GetQueryObjecti64vEXT" get-query-objecti-64v-ext) :args
17 ((:name |id| :type |UInt32| :direction :in)
18 (:name |pname| :type |GLenum| :direction :in)
19 (:name |params| :type |Int64EXT| :direction :out :array t :size pname))
20 :return ("void") :category ("EXT_timer_query") :dlflags ("notlistable")
21 :version ("1.5") :glxvendorpriv ("1328") :glxflags ("ignore") :glsflags
22 ("get") :glsopcode ("?") :offset ("?")))