OpenGL纹理ID的范围是多少?
我有一个拥有属性Texture_ID 的对象。我需要在构造函数中初始化Texture_ID 的值,因此我想要OpenGL 未使用的一些值来表示纹理尚未设置。
我不知道零(0)是否是一个好的值?如果 OpenGL 应用于纹理 ID 存在一个范围,我想要一个超出该范围的值。有什么想法吗?
I have an object which owns a property Texture_ID. I need to initialize the value for Texture_ID in constructor, so I want some value unused by OpenGL to present that the texture is not yet set.
I don't know whether zero (0) is a good value? If there is a range that OpenGL applies to texture IDs, I want a value out of this range. Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
0 是您要查找的值(表示未设置的纹理 ID/未创建的纹理),因为 0 永远不是有效的纹理 ID。
0 is the value you're looking for (to represent an unset texture ID/uncreated texture), as 0 is never a valid texture ID.
我宁愿在构造函数中初始化纹理。这样你就不会出现处于无效状态的对象。
I would rather initialize the texture in the constructor. That way you never have an object in an invalid state.
0
是 OpenGL 用于其自身默认纹理的值。它永远不会将该值返回给您,您可以使用该值进行错误检查。我建议使用
-1
。0
is the value OpenGL uses for its own default texture. It never returns that value to you and you can use that value for your error checking.I would although suggest using
-1
.