-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New fns convert_space_sliced and convert_space_chunked for operating efficiently on large pixel buffers without many function lookups. This is also necessary for more sane implementations of further colorspaces. Unfortunately this has the side effect that the per-pixel `convert_space` fn is much slower as it needs to compute the graph for each pixel. AFAIK the amount of situations where speed is paramount and space isn't converted across the entire buffer at once is mostly just my own Pixelbuster which is probably adjustable to this change.
- Loading branch information
Showing
3 changed files
with
133 additions
and
82 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