Adobe Molehill 绘制线
我怎样才能与 adobe molehill 划清界限。如果我使用opengl,我会使用GL_LINES,但我似乎molehill只能绘制三角形。
干杯
how can i draw a line with adobe molehill. If i was using opengl i would use GL_LINES, but i seems molehill can only draw triangles.
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Molehill 仅是三角形,因为大多数消费类显卡上只有三角形经过硬件加速。您可以用两个三角形绘制细矩形。不确定 Molehill 2D 是否已经支持线条,但可能值得一看。
Molehill is triangles only, because only triangles are hardware accelerated on most consumer video cards. You can draw thin rectangle with two triangles. Not sure if Molehill 2D already supports lines, but it may be worth to look at.
您可以编写一个片段着色器,它仅沿着三角形的一条边进行绘制。
You could write a fragment shader that will only draw along one edge of your triangle.