--------------------------------------------------------------------------------
-- |
-- Module      :  Graphics.Rendering.OpenGL.Raw.ARB.TextureCompressionBPTC
-- Copyright   :  (c) Sven Panne 2015
-- License     :  BSD3
--
-- Maintainer  :  Sven Panne <svenpanne@gmail.com>
-- Stability   :  stable
-- Portability :  portable
--
-- The <https://www.opengl.org/registry/specs/ARB/texture_compression_bptc.txt ARB_texture_compression_bptc> extension.
--
--------------------------------------------------------------------------------

module Graphics.Rendering.OpenGL.Raw.ARB.TextureCompressionBPTC (
  -- * Enums
  gl_COMPRESSED_RGBA_BPTC_UNORM_ARB,
  gl_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB,
  gl_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB,
  gl_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB
) where

import Graphics.Rendering.OpenGL.Raw.Tokens