3030public abstract class DisplayList {
3131 /**
3232 * Flag used when calling
33- * {@link HardwareCanvas#drawDisplayList(DisplayList, int, int, android.graphics.Rect, int)}.
33+ * {@link HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)}
3434 * When this flag is set, draw operations lying outside of the bounds of the
3535 * display list will be culled early. It is recommeneded to always set this
3636 * flag.
@@ -42,21 +42,21 @@ public abstract class DisplayList {
4242 /**
4343 * Indicates that the display list is done drawing.
4444 *
45- * @see HardwareCanvas#drawDisplayList(DisplayList, int, int, android.graphics.Rect, int)
45+ * @see HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)
4646 */
4747 public static final int STATUS_DONE = 0x0 ;
4848
4949 /**
5050 * Indicates that the display list needs another drawing pass.
5151 *
52- * @see HardwareCanvas#drawDisplayList(DisplayList, int, int, android.graphics.Rect, int)
52+ * @see HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)
5353 */
5454 public static final int STATUS_DRAW = 0x1 ;
5555
5656 /**
5757 * Indicates that the display list needs to re-execute its GL functors.
5858 *
59- * @see HardwareCanvas#drawDisplayList(DisplayList, int, int, android.graphics.Rect, int)
59+ * @see HardwareCanvas#drawDisplayList(DisplayList, android.graphics.Rect, int)
6060 * @see HardwareCanvas#callDrawGLFunction(int)
6161 */
6262 public static final int STATUS_INVOKE = 0x2 ;
0 commit comments