-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{-# LANGUAGE PatternSynonyms #-} | ||
-------------------------------------------------------------------------------- | ||
-- | | ||
-- Module : Graphics.GL.AMD.FramebufferMultisampleAdvanced | ||
-- Copyright : (c) Sven Panne 2018 | ||
-- License : BSD3 | ||
-- | ||
-- Maintainer : Sven Panne <[email protected]> | ||
-- Stability : stable | ||
-- Portability : portable | ||
-- | ||
-------------------------------------------------------------------------------- | ||
|
||
module Graphics.GL.AMD.FramebufferMultisampleAdvanced ( | ||
-- * Extension Support | ||
glGetAMDFramebufferMultisampleAdvanced, | ||
gl_AMD_framebuffer_multisample_advanced, | ||
-- * Enums | ||
pattern GL_MAX_COLOR_FRAMEBUFFER_SAMPLES_AMD, | ||
pattern GL_MAX_COLOR_FRAMEBUFFER_STORAGE_SAMPLES_AMD, | ||
pattern GL_MAX_DEPTH_STENCIL_FRAMEBUFFER_SAMPLES_AMD, | ||
pattern GL_NUM_SUPPORTED_MULTISAMPLE_MODES_AMD, | ||
pattern GL_RENDERBUFFER_STORAGE_SAMPLES_AMD, | ||
pattern GL_SUPPORTED_MULTISAMPLE_MODES_AMD, | ||
-- * Functions | ||
glNamedRenderbufferStorageMultisampleAdvancedAMD, | ||
glRenderbufferStorageMultisampleAdvancedAMD | ||
) where | ||
|
||
import Graphics.GL.ExtensionPredicates | ||
import Graphics.GL.Tokens | ||
import Graphics.GL.Functions |