internal override void outputDisplayList(android.view.DisplayList displayList) { throw new System.NotImplementedException(); }
/// <summary>Outputs the specified display list to the log.</summary> /// <remarks> /// Outputs the specified display list to the log. This method exists for use by /// tools to output display lists for selected nodes to the log. /// </remarks> /// <param name="displayList">The display list to be logged.</param> internal abstract void outputDisplayList(android.view.DisplayList displayList);
internal override bool drawDisplayList(android.view.DisplayList displayList, int width, int height, android.graphics.Rect dirty) { throw new System.NotImplementedException(); }
/// <summary>Draws the specified display list onto this canvas.</summary> /// <remarks>Draws the specified display list onto this canvas.</remarks> /// <param name="displayList">The display list to replay.</param> /// <param name="width">The width of the display list.</param> /// <param name="height">The height of the display list.</param> /// <param name="dirty"> /// The dirty region to redraw in the next pass, matters only /// if this method returns true, can be null. /// </param> /// <returns> /// True if the content of the display list requires another /// drawing pass (invalidate()), false otherwise /// </returns> internal abstract bool drawDisplayList(android.view.DisplayList displayList, int width, int height, android.graphics.Rect dirty);