787787f383058e666ba90eb522f2f9bf43f22bfd
[cl-glfw.git] / lib / opengl-amd_debug_output.lisp
blob787787f383058e666ba90eb522f2f9bf43f22bfd
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 ;;;; amd_debug_output
7 (defconstant +max-debug-logged-messages-amd+ #x9144)
8 (defconstant +debug-logged-messages-amd+ #x9145)
9 (defconstant +debug-severity-high-amd+ #x9146)
10 (defconstant +debug-severity-medium-amd+ #x9147)
11 (defconstant +debug-severity-low-amd+ #x9148)
12 (defconstant +debug-category-api-error-amd+ #x9149)
13 (defconstant +debug-category-window-system-amd+ #x914A)
14 (defconstant +debug-category-deprecation-amd+ #x914B)
15 (defconstant +debug-category-undefined-behavior-amd+ #x914C)
16 (defconstant +debug-category-performance-amd+ #x914D)
17 (defconstant +debug-category-shader-compiler-amd+ #x914E)
18 (defconstant +debug-category-application-amd+ #x914F)
19 (defconstant +debug-category-other-amd+ #x9150)
20 (defconstant +max-debug-logged-messages-amd+ #x9144)
21 (defconstant +debug-logged-messages-amd+ #x9145)
22 (defconstant +debug-severity-high-amd+ #x9146)
23 (defconstant +debug-severity-medium-amd+ #x9147)
24 (defconstant +debug-severity-low-amd+ #x9148)
25 (defconstant +debug-category-api-error-amd+ #x9149)
26 (defconstant +debug-category-window-system-amd+ #x914A)
27 (defconstant +debug-category-deprecation-amd+ #x914B)
28 (defconstant +debug-category-undefined-behavior-amd+ #x914C)
29 (defconstant +debug-category-performance-amd+ #x914D)
30 (defconstant +debug-category-shader-compiler-amd+ #x914E)
31 (defconstant +debug-category-application-amd+ #x914F)
32 (defconstant +debug-category-other-amd+ #x9150)
33 (defglextfun "GetDebugMessageLogAMD" get-debug-message-log-amd :return "UInt32"
34 :args
35 ((:name |count| :type |UInt32| :direction :in)
36 (:name |bufsize| :type |SizeI| :direction :in)
37 (:name |categories| :type |GLenum| :direction :out :array t :size count)
38 (:name |severities| :type |UInt32| :direction :out :array t :size count)
39 (:name |ids| :type |UInt32| :direction :out :array t :size count)
40 (:name |lengths| :type |SizeI| :direction :out :array t :size count)
41 (:name |message| :type |Char| :direction :out :array t :size bufsize))
42 :category "AMD_debug_output" :deprecated nil :version "4.1")
43 (defglextfun "DebugMessageCallbackAMD" debug-message-callback-amd :return
44 "void" :args
45 ((:name |callback| :type gldebugprocamd :direction :in)
46 ("userParam" "Void" "out" "reference"))
47 :category "AMD_debug_output" :deprecated nil :version "4.1")
48 (defglextfun "DebugMessageInsertAMD" debug-message-insert-amd :return "void"
49 :args
50 ((:name |category| :type |GLenum| :direction :in)
51 (:name |severity| :type |GLenum| :direction :in)
52 (:name |id| :type |UInt32| :direction :in)
53 (:name |length| :type |SizeI| :direction :in)
54 (:name |buf| :type |Char| :direction :in :array t :size length))
55 :category "AMD_debug_output" :deprecated nil :version "4.1")
56 (defglextfun "DebugMessageEnableAMD" debug-message-enable-amd :return "void"
57 :args
58 ((:name |category| :type |GLenum| :direction :in)
59 (:name |severity| :type |GLenum| :direction :in)
60 (:name |count| :type |SizeI| :direction :in)
61 (:name |ids| :type |UInt32| :direction :in :array t :size count)
62 (:name |enabled| :type |Boolean| :direction :in))
63 :category "AMD_debug_output" :deprecated nil :version "4.1")