On Tue, 17 Feb 2026 20:21:11 GMT, Alexey Ivanov <[email protected]> wrote:

>> You can still use `>>>` for other components, it will look consistent at 
>> least. Otherwise, you can't help wondering why different operators are used.
>
> That is
> 
> 
>         int expR = (argb >>> 16) & 0xFF;
>         int expG = (argb >>> 8) & 0xFF;
> 
> wouldn't raise questions.
> 
> (And I was wrong in my suggestion above, you still need `&`.)

>int expR = (argb >>> 16);
>You can still use >>> for other components, 

it does not work for others, it works only for alpha.

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/29734#discussion_r2818918391

Reply via email to