Fixed package name
[cl-glfw.git] / lib / opengl-ext_framebuffer_multisample.lisp
blobafc8ea36f015dfe1427ce79bd54b3bc5d4c8b3d3
2 (in-package #:gl)
4 ;;;; EXT_framebuffer_multisample
6 (defconstant +renderbuffer-samples-ext+ #x8CAB)
7 (defconstant +framebuffer-incomplete-multisample-ext+ #x8D56)
8 (defconstant +max-samples-ext+ #x8D57)
9 (defglextfun
10 (("RenderbufferStorageMultisampleEXT" renderbuffer-storage-multisample-ext)
11 :args
12 ((:name |target| :type |GLenum| :direction :in)
13 (:name |samples| :type |SizeI| :direction :in)
14 (:name |internalformat| :type |GLenum| :direction :in)
15 (:name |width| :type |SizeI| :direction :in)
16 (:name |height| :type |SizeI| :direction :in))
17 :return ("void") :category ("EXT_framebuffer_multisample") :version ("1.5")
18 :glxropcode ("4331") :glsopcode ("?") :offset ("?")))