开发者

How do I update part of a texture?

It seems as though glTexSubImage2D requires a pointer to the full texture buffer. How does one make partial updates to a texture by only providing a开发者_开发知识库 pointer to the update region rather than the whole buffer?

For example if I want to overlay a second image onto an existing texture, rather than copy the image data onto my texture buffer then call glTexSubImage2D, I just get opengl to update the texture without having to copy data between RAM locations.


Where do you get the notion that glTexSubImage2D requires a pointer to the full texture buffer ?

From the documentation linked above, it seems to me that the last parameter is a pointer to the buffer containing your new data only. The other parameters are what you use to specify which texture object to update (just an OpenGL identifier, no pointer to the original data required) and the offset and size to copy your new data to.

TL;DR: glTexSubImage2D takes a pointer to your new data and does exactly what you think it should in your example :)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜