-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
For auth files, this looked something like: Disk/SDL Blob -> Temporary Buffer -> Send Buffer -> OS Buffer For minified SDL, we had the same thing, but instead of the Disk as a backing store, we were using a buffer in userspace, which meant there were three redundant copies instead of just two in disk file case. This removes the temporary buffer from the equation such that the process is now: Disk/SDL Blob -> Send Buffer -> OS Buffer
- Loading branch information
Showing
3 changed files
with
27 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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