重塑期间闪烁
我正在使用 FPSAnimator 和 jogl 在 GLCanvas 上绘制旋转四边形。通常图形不会闪烁并且旋转很平滑,但是当我调整窗口大小或将其从屏幕的不可见区域移动到可见区域时,会添加额外的重绘请求。由于所有绘图都是由 FPSAnimator 完成,我如何过滤掉这些额外的请求
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试在命令行上向 JVM 传递参数:
-Dsun.awt.noerasebackground=true
。这应该减少/消除闪烁。该问题在 JoglUserGuide
具体来说:
You can try passing the parameter:
-Dsun.awt.noerasebackground=true
to the JVM on the command line. This should reduce/remove the flickering.The problem is described on the JoglUserGuide
Specifically: