Unity's Texture.GetPixels32() gives us a Color32[], which is an RGBA array that can be converted easily into byte[].
How can we convert this Color32[] or RGBA byte[] into a YUV byte[]?
Also, how does the Alpha value affect the YUV conversion? Online, I mostly see people only trying to convert RGB to YUV. Thanks!