Skip to main content
3 votes
1 answer
784 views

This code renders a colored triangle with anti-aliasing (samples=8) when a depth buffer line depth_attachment=ctx.depth_texture((512, 512), samples=8) is commented. But when I add a depth buffer it ...
Joys's user avatar
  • 351
3 votes
1 answer
1k views

This code renders a colored triangle when there is no anti-aliasing (samples=0). But when I turn on anti-aliasing (samples=1...32) it can't render anything. How to make it work with anti-aliasing? ...
Joys's user avatar
  • 351
1 vote
0 answers
373 views

I've tried a lot of solutions to similar issues but I've found that they're not quite specific enough or they're outdated (or maybe I'm not sharp enough!) I'm packaging some Python code to run on AWS ...
transposeglobal's user avatar
0 votes
1 answer
567 views

After creating a headless context with ctx = create_context(standalone=True) ctx.viewport = (0, 0, 500, 500) and creating a vertex array, I wish to get the image data of vao.render(). Is there any ...
MichaelT572's user avatar