在android中同时绘制剪切平面和线框
我正在尝试剪辑 3D 模型。它在着色模式下工作正常,但仅在某些设备中处于线框模式时应用程序崩溃。使用glClipPlanef和GL_LINES
有什么问题吗?
我正在使用 glDrawElements(GL10.GL_LINES, 6*numberOfFaces, GL_UNSIGNED_SHORT,shortBuffer ) 来绘制线框。
I am trying to clip a 3D model . It works fine with shaded mode but the application crashes when it is in wireframe mode in some devices only. Is there any issue using glClipPlanef and GL_LINES
?
I am using glDrawElements(GL10.GL_LINES, 6*numberOfFaces, GL_UNSIGNED_SHORT,shortBuffer )
to draw wireframe.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题出在 glEnable(GL_TEXTURE2D) 上。当它被删除时,一切正常。
The issue was with glEnable(GL_TEXTURE2D). When it was removed everything works fine.