File tree 1 file changed +32
-0
lines changed
1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ {-# LANGUAGE PatternSynonyms #-}
2
+ --------------------------------------------------------------------------------
3
+ -- |
4
+ -- Module : Graphics.GL.AMD.FramebufferMultisampleAdvanced
5
+ -- Copyright : (c) Sven Panne 2018
6
+ -- License : BSD3
7
+ --
8
+ -- Maintainer : Sven Panne <[email protected] >
9
+ -- Stability : stable
10
+ -- Portability : portable
11
+ --
12
+ --------------------------------------------------------------------------------
13
+
14
+ module Graphics.GL.AMD.FramebufferMultisampleAdvanced (
15
+ -- * Extension Support
16
+ glGetAMDFramebufferMultisampleAdvanced ,
17
+ gl_AMD_framebuffer_multisample_advanced ,
18
+ -- * Enums
19
+ pattern GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD ,
20
+ pattern GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD ,
21
+ pattern GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD ,
22
+ pattern GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD ,
23
+ pattern GL_RENDERBUFFER_STORAGE_SAMPLES_AMD ,
24
+ pattern GL_SUPPORTED_MULTISAMPLE_MODES_AMD ,
25
+ -- * Functions
26
+ glNamedRenderbufferStorageMultisampleAdvancedAMD ,
27
+ glRenderbufferStorageMultisampleAdvancedAMD
28
+ ) where
29
+
30
+ import Graphics.GL.ExtensionPredicates
31
+ import Graphics.GL.Tokens
32
+ import Graphics.GL.Functions
You can’t perform that action at this time.
0 commit comments