Add depth test update when fill and stroke shader info are created

This commit is contained in:
Grant Sanderson
2020-06-17 17:11:31 -07:00
parent 138c48c739
commit b16b107f3e

View File

@ -868,6 +868,8 @@ class VMobject(Mobject):
stroke_info = dict(self.stroke_shader_info_template)
fill_info["uniforms"] = self.get_shader_uniforms()
stroke_info["uniforms"] = self.get_stroke_uniforms()
fill_info["depth_test"] = self.depth_test
stroke_info["depth_test"] = self.depth_test
back_stroke_data = []
stroke_data = []