Home | History | Annotate | Download | only in functional

Lines Matching refs:randomPartition

589 static void randomPartition (vector<IVec4>& dst, de::Random& rnd, int x, int y, int width, int height)
601 randomPartition(dst, rnd, x, y, split, height);
602 randomPartition(dst, rnd, x+split, y, width-split, height);
607 randomPartition(dst, rnd, x, y, width, split);
608 randomPartition(dst, rnd, x, y+split, width, height-split);
617 randomPartition(dst, rnd, 0, 0, width, height);