如何使用 XLib 调整像素图的大小?

发布于 2024-07-30 04:39:08 字数 103 浏览 11 评论 0原文

我使用像素图作为窗口的备份,以便在暴露事件下恢复它。 调整窗口大小时,是否必须调整备份像素图的大小?

如果是这样,最好的方法是什么? 创建一个具有新尺寸的新像素图?

I'm using a pixmap as a window's backup in order to restore it under expose events. When the window is resized, must I resize the backup pixmap?

If so, what is the best way? Create a new pixmap with the new size?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦中的蝴蝶 2024-08-06 04:39:08

是的你是对的。

如果窗口大小调整为较小的尺寸,您只需剪辑它即可。

如果窗口更大,您将再次分配新的大小。

我的建议也是看看

  • xcb 它目前取代了 xlib
  • xshm 函数可实现更快的性能
  • Xrender/cairo/clutter 可能已经完成了您想要的操作

Yes you are right.

If the window is resized to a smaller size you just clip it.

If the window is bigger you allocate again to the new size.

My advice would also be to look at

  • xcb which replaces xlib at the moment
  • xshm functions for faster performance
  • Xrender/cairo/clutter that may do what you want already
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文