取消引用 SDL_Surfaces?
有没有办法将 SDL 表面复制到另一个表面(例如创建备份副本),而在修改副本时无需修改原始表面? *surface = *original_surface
不起作用。 SDL_Surface 没有任何构造函数,因此我无法执行诸如 surface = new SDL_Surface (original_surface)
之类的操作。目前,我不断地打开原始图像,但打开图像所需的时间比完成一个循环的时间要长。这会导致很多滞后,并最终出现错误,导致我的程序结束
is there any way to copy a SDL surface to another, like creating a backup copy, without modifying the original when the copy is modified? *surface = *original_surface
dosnt work. SDL_Surface does not have any constructors, so i cant do anything like surface = new SDL_Surface (original_surface)
. currently, i am opening the original image constantly, but it takes longer to open the image than for one loop to finish. this causes a lot of lagging, and eventually errors, causing my program to end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个新的兼容表面:
然后将原始表面传输到副本中:
You can create a new compatible surface:
And then blit the original into the copy: