Cleanup: remove uniforms from shader datatype

This commit is contained in:
2023-03-20 01:19:10 +00:00
parent 33f31aa385
commit 32ecf46343
17 changed files with 24 additions and 99 deletions
-3
View File
@@ -28,13 +28,11 @@ module Shader.Data
, shadVAO
, shadPrim'
, shadTex'
, shadUnis
-- | Synonyms
, vert
, geom
, frag
) where
import Data.Vector (Vector)
import Graphics.GL.Core45
import Foreign
import Control.Lens
@@ -44,7 +42,6 @@ data FullShader = FullShader
, _shadVAO :: VAO
, _shadPrim' :: EPrimitiveMode
, _shadTex' :: Maybe ShaderTexture
, _shadUnis :: Vector GLint
}
{- | Vertex array object: contains the reference to the object,
and its buffer targets. -}