Home | History | Annotate | Download | only in functional

Lines Matching refs:randomPartition

550 static void randomPartition (vector<IVec4>& dst, de::Random& rnd, int x, int y, int width, int height)
562 randomPartition(dst, rnd, x, y, split, height);
563 randomPartition(dst, rnd, x+split, y, width-split, height);
568 randomPartition(dst, rnd, x, y, width, split);
569 randomPartition(dst, rnd, x, y+split, width, height-split);
578 randomPartition(dst, rnd, 0, 0, width, height);