Skip to content

Commit 531d164

Browse files
Romain GuyAndroid (Google) Code Review
authored andcommitted
Merge "Fix javadoc" into jb-dev
2 parents 4380f95 + 3dd4b51 commit 531d164

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/java/android/view/DisplayList.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public 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

Comments
 (0)