Determine whether or not this is a public-visible and non-deprecated {@code format}.
In particular, {@code @hide} formats will return {@code false}.
Any other indirect formats (such as {@code TRANSPARENT} or {@code TRANSLUCENT})
will return {@code false}.
switch (format) {
case RGBA_8888:
case RGBX_8888:
case RGB_888:
case RGB_565:
return true;
}
return false;