| ▲ | carlosjobim 4 hours ago |
| If think that the MacOS GUI is actually entirely rendered as a series of PDFs, if I have understood things correctly. |
|
| ▲ | jonhohle 4 hours ago | parent | next [-] |
| That’s how it originally worked, but Apple has moved away from PDF to other native GPU frameworks for drawing. Now window content is stored as bitmaps instead of redrawing vector instructions. |
| |
| ▲ | mpweiher 3 hours ago | parent [-] | | That's not how it ever worked. Quartz is a vector drawing engine whose output can be captured as a PDF and which is closely aligned with the PDF imaging model. Window content was always stored as bitmaps. | | |
| ▲ | jonhohle 2 hours ago | parent [-] | | You’re correct. I meant to say textures, but even that isn’t completely accurate. AppKit used to generate the bitmap directly through CoreGraphics (PDF model). Now it uses Core Animation and Metal and no longer draws the bitmap directly. |
|
|
|
| ▲ | mpweiher 3 hours ago | parent | prev [-] |
| You have understood things incorrectly. |