{-# LANGUAGE PatternSynonyms #-}
--------------------------------------------------------------------------------
-- |
-- Module      :  Graphics.GL.ARB.ColorBufferFloat
-- Copyright   :  (c) Sven Panne 2019
-- License     :  BSD3
--
-- Maintainer  :  Sven Panne <svenpanne@gmail.com>
-- Stability   :  stable
-- Portability :  portable
--
--------------------------------------------------------------------------------

module Graphics.GL.ARB.ColorBufferFloat (
  -- * Extension Support
  glGetARBColorBufferFloat,
  gl_ARB_color_buffer_float,
  -- * Enums
  pattern GL_CLAMP_FRAGMENT_COLOR_ARB,
  pattern GL_CLAMP_READ_COLOR_ARB,
  pattern GL_CLAMP_VERTEX_COLOR_ARB,
  pattern GL_FIXED_ONLY_ARB,
  pattern GL_RGBA_FLOAT_MODE_ARB,
  -- * Functions
  glClampColorARB
) where

import Graphics.GL.ExtensionPredicates
import Graphics.GL.Tokens
import Graphics.GL.Functions