窗口。什么是 window 服务器和 window 设备?

NSWindow. What is window server and window device?

我正在阅读 documentation 以进行 NSWindow 初始化,这就是其中一个名为 flag:

的初始化参数的内容

Specifies whether the window server creates a window device for the window immediately

而且我不知道 window 服务器和 window 设备到底是什么。谷歌搜索没有帮助。有人可以解释一下吗?

window 服务器是您在 macOS 中看到的图形界面。它运行在达尔文之上。它绘制桌面并管理图形界面使用的资源和事件。

我相信 window 上下文指的是硬件和软件之间的接口。例如 window 服务器使用 Core Graphics 在屏幕或打印机上显示 windows 及其视图。当它说 "Specifies whether the window server creates a window device for the window immediately" 时,它将等待由 window 服务器将 window 放入 window 层次结构,直到它实际显示在屏幕上。没有 window 设备,无法执行渲染调用。

您可以在 Window Programming Guide 下的苹果文档存档中阅读更多关于 windows 的内容。即使它是很久以前写的,它仍然具有相关性。