RasterFloatGraphics.setClip(null) was being used, immediately after
instantiation of that RasterFloatGraphics. The constructor of that class calls
that method internally, so it was a wasted effort. We have to be careful to
not remove calls to this setClip(null) method when it's actually doing
something important, and not immediately following the constructor.