我有这个程序真的很慢。分析显示瓶颈在 XGetImage 中(不,我无法在循环中调用 XGetImage)。在阅读推荐的解决方案时,改为调用 XShmGetImage,但文档真的很糟糕。

我正在寻找有关如何调用 XShmCreateImage、XShmGetImage 和 XShmSetImage 的非常简单的示例代码。

深度分析肯定使 XGetImage 成为根瓶颈而不是 XPutImage(是的,我知道调用 XFlush 以使分析准确),因此我可能得出结论,对内存分配器的隐式调用实际上很慢,但没有 XGetImage 的变体这让我可以传递一个预分配的 XImage,除了 XShmGetImage。无论如何,Shm 函数的使用可能会得到更多改进。

最佳答案

MIT-SHM 文档并不烂。它根本不存在。

这是一个有效的咒语:

  Display *d;
  int s;
  XImage *image;
  XShmSegmentInfo shminfo;
  d = XOpenDisplay(NULL);
  s = DefaultScreen(d);

  image = XShmCreateImage(d,
      DefaultVisual(d,0), // Use a correct visual. Omitted for brevity
      24,   // Determine correct depth from the visual. Omitted for brevity
      ZPixmap, NULL, &shminfo, 100, 100);

  shminfo.shmid = shmget(IPC_PRIVATE,
      image->bytes_per_line * image->height,
      IPC_CREAT|0777);

  shminfo.shmaddr = image->data = shmat(shminfo.shmid, 0, 0);
  shminfo.readOnly = False;

  XShmAttach(d, &shminfo);

  XShmGetImage(d,
      RootWindow(d,0),
      image,
      50,
      50,
      AllPlanes);

关于c - 如何使用 XShmGetImage 和 XShmPutImage,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43442675/

10-12 16:09