summaryrefslogtreecommitdiff
path: root/src/LambdaCube/GL/Type.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/LambdaCube/GL/Type.hs')
-rw-r--r--src/LambdaCube/GL/Type.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LambdaCube/GL/Type.hs b/src/LambdaCube/GL/Type.hs
index 57f7df0..9069f37 100644
--- a/src/LambdaCube/GL/Type.hs
+++ b/src/LambdaCube/GL/Type.hs
@@ -140,10 +140,10 @@ data GLProgram
140 = GLProgram 140 = GLProgram
141 { shaderObjects :: [GLuint] 141 { shaderObjects :: [GLuint]
142 , programObject :: GLuint 142 , programObject :: GLuint
143 , inputUniforms :: Map String GLint 143 , inputUniforms :: Map String GLint -- foreach: GLSetUniform
144 , inputTextures :: Map String GLint -- all input textures (render texture + uniform texture) 144 , inputTextures :: Map String GLint -- all input textures (render texture + uniform texture)
145 , inputTextureUniforms :: Set String 145 , inputTextureUniforms :: Set String -- foreach: GLBindTexture
146 , inputStreams :: Map String (GLuint,String) 146 , inputStreams :: Map String (GLuint,String) -- foreach: GLSetVertexAttrib*Array
147 } 147 }
148 148
149data GLTexture 149data GLTexture