Add native osx backend v1 (with bitmap support)#206
Closed
almarklein wants to merge 1 commit into
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This code has been sitting in my local folder for months. I'm making a PR, and will close it right away; then the code is at least stored somewhere safe.
My plan is to (eventually) make a native backend for all major platforms (windows, macos, linux), so that the simple use-case of just creating a window Just Works without any dependencies.
This PR adds a WIP for macos, using Cocoa. It supports both 'screen' and 'bitmap' present. The bitmap present is pretty cool: it uses Metal, and a GPU texture that (on Apple silicon) lives in RAM, so all that's needed to update the bitmap is to copy it to the texture's memory address 🤯, so it's super-fast.
However, for the Metal stuff to work, the code needs a small piece of objective-C, which needs compilation. Therefore, I'll probably refactor this into a simpler backend that only supports screen-present. The remaining work is mostly about adding the user events.