summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/topics/graphics
diff options
context:
space:
mode:
authorRobert Ly <robertly@google.com>2012-03-01 16:46:55 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-03-01 16:46:55 -0800
commit24ed1b2fb53761859d2866d3e9676f41fd158f1e (patch)
treea74e88dce5aa74bc8c19b3204d617da8159757bc /docs/html/guide/topics/graphics
parent80b29211fd9fb958c7bac405df38afae7db3bf93 (diff)
parentb4afb9a89e1a2131ac273f0452fa89b83090b05a (diff)
downloadframeworks_base-24ed1b2fb53761859d2866d3e9676f41fd158f1e.zip
frameworks_base-24ed1b2fb53761859d2866d3e9676f41fd158f1e.tar.gz
frameworks_base-24ed1b2fb53761859d2866d3e9676f41fd158f1e.tar.bz2
am b4afb9a8: am 8125b0b4: am dcc910ea: Merge "docs: fix bug 5878445" into ics-mr1
* commit 'b4afb9a89e1a2131ac273f0452fa89b83090b05a': docs: fix bug 5878445
Diffstat (limited to 'docs/html/guide/topics/graphics')
-rw-r--r--docs/html/guide/topics/graphics/hardware-accel.jd7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/html/guide/topics/graphics/hardware-accel.jd b/docs/html/guide/topics/graphics/hardware-accel.jd
index 39ccbf4..04fb564 100644
--- a/docs/html/guide/topics/graphics/hardware-accel.jd
+++ b/docs/html/guide/topics/graphics/hardware-accel.jd
@@ -42,19 +42,20 @@ parent.link=index.html
<li><a href="{@docRoot}guide/topics/graphics/opengl.html">OpenGL with the Framework
APIs</a></li>
- <li><a href="{@docRoot}guide/topics/renderscript/index.html">RenderScript</a></li>
+ <li><a href="{@docRoot}guide/topics/renderscript/index.html">Renderscript</a></li>
</ol>
</div>
</div>
<p>Beginning in Android 3.0 (API level 11), the Android 2D rendering pipeline is designed to
better support hardware acceleration. Hardware acceleration carries out all drawing operations
- that are performed on a {@link android.view.View}'s canvas using the GPU.</p>
+ that are performed on a {@link android.view.View}'s canvas using the GPU. Because of the
+ increased resources required to enable hardware acceleration, your app will consume more RAM.</p>
<p>The easiest way to enable hardware acceleration is to turn it on
globally for your entire application. If your application uses only standard views and {@link
android.graphics.drawable.Drawable}s, turning it on globally should not cause any adverse
- effects. However, because hardware acceleration is not supported for all of the 2D drawing
+ drawing effects. However, because hardware acceleration is not supported for all of the 2D drawing
operations, turning it on might affect some of your applications that use custom views or drawing
calls. Problems usually manifest themselves as invisible elements, exceptions, or wrongly
rendered pixels. To remedy this, Android gives you the option to enable or disable hardware