I need to compute the average RGB values of the camera color texture, ideally using frame buffer fetch and staying on tile memory.
I read online that a possible solution to average is to blit to a render texture that has mip maps enabled and then sample the last mip level.
If instead I blit to a 1x1 texture, what result would I get? Would that still be an average?