--------------------------------------------------------------------------------
-- |
-- Module      :  Graphics.Rendering.OpenGL.Raw.Core31.Types
-- Copyright   :  (c) Sven Panne 2013
-- License     :  BSD3
--
-- Maintainer  :  Sven Panne <svenpanne@gmail.com>
-- Stability   :  stable
-- Portability :  portable
--
-- This module corresponds to table 2.2 in section 2.3 (Command Syntax) of the
-- OpenGL 3.1 specs.
--
--------------------------------------------------------------------------------

module Graphics.Rendering.OpenGL.Raw.Core31.Types (
   GLboolean,
   GLbyte,
   GLubyte,
   GLchar,
   GLshort,
   GLushort,
   GLint,
   GLuint,
   GLsizei,
   GLenum,
   GLintptr,
   GLsizeiptr,
   GLbitfield,
   GLhalf,
   GLfloat,
   GLclampf,
   GLdouble,
   GLclampd
) where

import Graphics.Rendering.OpenGL.Raw.Types