File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ data Types =
4242data Type
4343 = Int
4444 | Float
45+ | Bool
4546 | V2
4647 | V3
4748 | V4
Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ extractInputs decl =
174174 GLS. Mat4 -> [(qual, Shader. M4 , name)]
175175 GLS. Int -> [(qual, Shader. Int , name)]
176176 GLS. Float -> [(qual, Shader. Float , name)]
177+ GLS. Bool -> [(qual, Shader. Bool , name)]
177178 GLS. Sampler2D -> [(qual, Shader. Texture , name)]
178179 _ -> []
179180 _ -> []
Original file line number Diff line number Diff line change @@ -502,6 +502,7 @@ glToType glType =
502502 Shader. M4 -> Type. mat4
503503 Shader. Int -> Type. int
504504 Shader. Float -> Type. float
505+ Shader. Bool -> Type. bool
505506 Shader. Texture -> Type. texture
506507
507508
You can’t perform that action at this time.
0 commit comments