Is this a bug with ColorFunctionScaling?
When I try to supply my own ColorFunction Mathematica seems to partially ignore it, and the white color "burns through" if the function is too "sharp":
mycf[z_] := RGBColor[z, 0, 0]
GraphicsRow[
{DensityPlot[(Sin[x] Sin[y])^4, {x, 0, Pi}, {y, 0, Pi},
ColorFunction -> mycf, ColorFunctionScaling -> False],
DensityPlot[(Sin[x] Sin[y])^5, {x, 0, Pi}, {y, 0, Pi},
ColorFunction -> mycf, ColorFunctionScaling -> False]}
]



PlotRange -> All. – 0x4A4D♦ Nov 8 '12 at 1:09