Change winding fill blend_func

This commit is contained in:
Grant Sanderson
2023-01-24 21:46:52 -08:00
parent 0e2d21bed3
commit 272925fa19

View File

@ -479,7 +479,7 @@ class Camera(object):
self.fill_fbo.clear(0.0, 0.0, 0.0, 0.0)
self.fill_fbo.use()
self.ctx.blend_func = (
moderngl.ONE, moderngl.ZERO,
moderngl.ONE, moderngl.ONE,
moderngl.ONE, moderngl.ONE,
)
vao.render(render_primitive)