Copyright | (c) Sven Panne 2006-2019 |
---|---|
License | BSD3 |
Maintainer | Sven Panne <svenpanne@gmail.com> |
Stability | stable |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
This module contains functions related to shader uniforms, this corresponds to section 2.20.3 of the OpenGL 3.1 spec (Shader Variables).
Synopsis
- newtype UniformLocation = UniformLocation GLint
- uniformLocation :: Program -> String -> GettableStateVar UniformLocation
- activeUniforms :: Program -> GettableStateVar [(GLint, VariableType, String)]
- class Uniform a where
- uniform :: UniformLocation -> StateVar a
- uniformv :: UniformLocation -> GLsizei -> Ptr a -> IO ()
- class Storable a => UniformComponent a
Uniform variables
newtype UniformLocation Source #
Instances
Eq UniformLocation Source # | |
Defined in Graphics.Rendering.OpenGL.GL.Shaders.Uniform (==) :: UniformLocation -> UniformLocation -> Bool # (/=) :: UniformLocation -> UniformLocation -> Bool # | |
Ord UniformLocation Source # | |
Defined in Graphics.Rendering.OpenGL.GL.Shaders.Uniform compare :: UniformLocation -> UniformLocation -> Ordering # (<) :: UniformLocation -> UniformLocation -> Bool # (<=) :: UniformLocation -> UniformLocation -> Bool # (>) :: UniformLocation -> UniformLocation -> Bool # (>=) :: UniformLocation -> UniformLocation -> Bool # max :: UniformLocation -> UniformLocation -> UniformLocation # min :: UniformLocation -> UniformLocation -> UniformLocation # | |
Show UniformLocation Source # | |
Defined in Graphics.Rendering.OpenGL.GL.Shaders.Uniform showsPrec :: Int -> UniformLocation -> ShowS # show :: UniformLocation -> String # showList :: [UniformLocation] -> ShowS # |
activeUniforms :: Program -> GettableStateVar [(GLint, VariableType, String)] Source #
class Uniform a where Source #
uniform :: UniformLocation -> StateVar a Source #
uniformv :: UniformLocation -> GLsizei -> Ptr a -> IO () Source #
Instances
class Storable a => UniformComponent a Source #
uniform1, uniform2, uniform3, uniform4, getUniform, uniform1v, uniform2v, uniform3v, uniform4v