Move cached values into color_mode.cpp
and apply fixes to OKHSL
#79037
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.
I'm following up a quote by @KoBeWi on #78486 and #77863. I have moved the caching logic into the color_mode.
#78486 (comment)
However, I am debating whether to move out the
h
,s
,v
, andlast_color
values as well. Forh
,s
, andv
, I see that they are used by other functions such as_w_input
and_uv_input
. It seems these are part of the picker shape.. Forlast_color
, I believe this is a part of the last_color shown in the picker. Thus, I did not move this logic into color_mode.In addition, I applied the same logic to OKHSL, it seems I overlooked the issue a while back. This logic is put in
color_mode.cpp