创建空白 opengl 纹理
我正在开发一个游戏引擎,Texture 类中的功能之一应该是创建具有指定宽度、高度和像素格式的空白纹理。
我知道如何创建纹理等等,我也知道我可以使用 glTexImage2d 来格式化它,并将 null 作为数据。但令我烦恼的是,我必须告诉 openGL 我的数据格式(即使它是空的),这意味着我必须编写一个函数,将 PIXEL_INTERNAL_FORMAT 枚举转换为 PIXEL_FORMAT 和 PIXEL_TYPE。
如何让 opengl 仅根据 PIXEL_INTERNAL_FORMAT 分配内存?
I'm working on a game engine, and one of the functions in the Texture class should be to create a blank texture with a specified width, height, and pixel format.
I know how to create the texture and all that, I also know that I can format it using glTexImage2d with null as the data. What annoys me though is that I have to tell openGL the format of my data (even though it's null) which would mean I have to write a function which converts the PIXEL_INTERNAL_FORMAT enum into a PIXEL_FORMAT and a PIXEL_TYPE.
How can I get opengl to allocate memory only based on the PIXEL_INTERNAL_FORMAT?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PIXEL_FORMAT
和PIXEL_TYPE
不应与PIXEL_INTERNAL_FORMAT
匹配。它们应该描述您传入的数据,以便 OpenGL 可以在必要时对其进行转换。当没有数据传入时,不会进行转换。因此,当数据指针为空时,您可以对这两个参数使用任何合法值(假设您没有 VBO 绑定)。
PIXEL_FORMAT
andPIXEL_TYPE
aren't supposed to matchPIXEL_INTERNAL_FORMAT
. They're supposed to describe the data you pass in, so OpenGL can convert it if necessary. When no data is passed in, there will be no conversion.So you can use any legal values for these two parameters, when the data pointer is null (assuming you do not have a VBO bound).