supportsMipmaps property
Whether a texture built with a hand-supplied mip chain samples correctly.
Asked rather than assumed, and the failure it guards against is not a
missing feature but a silent one: flutter_gpu reports this as
doesSupportManuallyMippedTextures, and its own documentation says that
on OpenGL ES 2 devices without GL_APPLE_texture_max_level such a texture
samples as black. Not blurrier, not unfiltered — black. A caller that
did not ask would see an effect disappear on one class of device with
nothing logged anywhere.
Implementation
@override
bool get supportsMipmaps => true;