Change random number generator for 'tests' to SkMWCRandom. Also removes some
authorjvanverth@google.com <jvanverth@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 4 Mar 2013 13:56:38 +0000 (13:56 +0000)
committerjvanverth@google.com <jvanverth@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Mon, 4 Mar 2013 13:56:38 +0000 (13:56 +0000)
commitc490f801b063a0837501feab3d12b73d71f46312
treeffd4472adf43e7f9536018fdb03f253325baf858
parentbb963e2585efb9690906b5963fcf516ddfb1d432
Change random number generator for 'tests' to SkMWCRandom. Also removes some
unused headers and fixes a couple of bugs exposed by changing the random
number generator:

First, the function SkMatrix::getMaxStretch() had an error where it was testing
the square of a number against near-zero. This led to it occasionally taking a
cheaper but imprecise path for computing the eigenvalues of the matrix. It's
been replaced with a check against the square of SK_ScalarNearlyZero.

The second case was a failure in ClipStackTest, where it hit the rare case of
a practically empty clip stack (it has a single Union) and we set a tight
bounds. The bounds rect doesn't get set by GrReducedClip::ReduceClipStack() in
this case, so when it clips the reduced stack it's clipping against garbage,
and the resulting regions don't match. The solution is to initialize the
tightBounds rect.

git-svn-id: http://skia.googlecode.com/svn/trunk@7952 2bbb7eff-a529-9590-31e7-b0007b416f81
27 files changed:
src/core/SkFloat.cpp
src/core/SkGraphics.cpp
src/core/SkMatrix.cpp
src/gpu/GrRedBlackTree.h
src/gpu/gl/GrGLEffectMatrix.h
tests/AAClipTest.cpp
tests/BlurTest.cpp
tests/ClampRangeTest.cpp
tests/ClipStackTest.cpp
tests/ColorFilterTest.cpp
tests/ColorTest.cpp
tests/DrawBitmapRectTest.cpp
tests/GrMemoryPoolTest.cpp
tests/InfRectTest.cpp
tests/LListTest.cpp
tests/MathTest.cpp
tests/MatrixTest.cpp
tests/PackBitsTest.cpp
tests/PathTest.cpp
tests/PictureTest.cpp
tests/RTreeTest.cpp
tests/RegionTest.cpp
tests/Sk64Test.cpp
tests/SortTest.cpp
tests/StreamTest.cpp
tests/UtilsTest.cpp
tests/Writer32Test.cpp