History log of /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/PathOpsActivity.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
8018c8db8221aa604b3c083e09d173cc27e53d83 30-Jul-2013 Romain Guy <romainguy@google.com> Add path ops API

Path ops can be used to combine two paths instances in a single path
object. The following operations can be used:

- Difference
- Reverse difference
- Union
- XOR
- Intersection

To use the API:

Path p1 = createCircle();
Path p2 = createRect();

Path result = new Path();
result.op(p1, p2, Path.Op.DIFFERENCE);

This code will subtract the rectangle from the circle and generate
the resulting path in "result."

Change-Id: Ic25244665b6691a7df0b0002a09da73d937b553b
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/PathOpsActivity.java