vhdl for loop
xxxxxxxxxx
-- 1 upto and including (ENTITY_AMOUNT)
FOR count IN 1 TO ENTITY_AMOUNT LOOP
-- if address is not transparrent pixel (1111111111)
if (AdressIn((count * SIZE) - 1 DOWNTO ((count -1) * SIZE)) /= Trans) then
AdressOut <= AdressIn((count * SIZE) - 1 DOWNTO ((count -1) * SIZE));
exit;
end if;
END loop;