diff options
| author | 2013-07-08 14:48:07 -0700 | |
|---|---|---|
| committer | 2013-07-08 14:48:07 -0700 | |
| commit | 0a84ca2b4968fc5c9e5d5d682720563ca7a7fb69 (patch) | |
| tree | 2e6bab7f0c95cb1c5c88b0027a7820bd1101ac37 | |
| parent | a2bbb9a7d1a65eff929bb280201fd07c30ee35d1 (diff) | |
| parent | 928e045f9aea3ee7c4edba1257e674f5a514435f (diff) | |
am 928e045f: am b8b94d9b: am 538bd4d8: Merge "Fixing missing internal link in document."
* commit '928e045f9aea3ee7c4edba1257e674f5a514435f':
Fixing missing internal link in document.
| -rw-r--r-- | docs/html/guide/topics/graphics/hardware-accel.jd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/topics/graphics/hardware-accel.jd b/docs/html/guide/topics/graphics/hardware-accel.jd index 8ba6676bf11c..54ef20cd0fa7 100644 --- a/docs/html/guide/topics/graphics/hardware-accel.jd +++ b/docs/html/guide/topics/graphics/hardware-accel.jd @@ -164,7 +164,7 @@ href="#layers">View layers</a> for more information about their uses.</p> draws views without hardware acceleration as well. The following sections describe the software-based and hardware-accelerated drawing models.</p> -<h3>Software-based drawing model</h3> +<h3 id="software-model">Software-based drawing model</h3> <p>In the software drawing model, views are drawn with the following two steps:</p> <ol> <li>Invalidate the hierarchy</li> @@ -196,7 +196,7 @@ changed.</li> android.view.View#invalidate invalidate()} when their properties change, such as the background color or the text in a {@link android.widget.TextView}.</p> - <h3>Hardware accelerated drawing model</h3> + <h3 id="hardware-model">Hardware accelerated drawing model</h3> <p>The Android system still uses {@link android.view.View#invalidate invalidate()} and {@link android.view.View#draw draw()} to request screen updates and to render views, but handles the actual drawing differently. Instead of executing the drawing commands immediately, the Android |