Hi all,
I have a starting colour:
int col = 0xFF000000;
And I’m trying to create a loop that increases that colour to 0xFF111111 and then 0xFF222222 and so on. Is there an easier way of doing this with bitwise operators than doing it manually?
Thanks in advance
Paul