summaryrefslogtreecommitdiffstats
path: root/docs/html
diff options
context:
space:
mode:
authorDavid Friedman <dmail@google.com>2014-05-05 17:05:22 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-05-05 17:05:22 +0000
commit4146d546a4ab8465970e7c73bf1e9e00767931b6 (patch)
tree2a56cf4fd199d641c3116e09b9c5d0766680ba30 /docs/html
parent937db487443171b75f321190be591c8f3d5f74bb (diff)
parenta47d6ed761a3212e5a562fa7b1bc6151873640cd (diff)
downloadframeworks_base-4146d546a4ab8465970e7c73bf1e9e00767931b6.zip
frameworks_base-4146d546a4ab8465970e7c73bf1e9e00767931b6.tar.gz
frameworks_base-4146d546a4ab8465970e7c73bf1e9e00767931b6.tar.bz2
Merge "Clarified recommended use cases for NDK. Added - "game engines" officially supported use case for NDK Removed - "self-contained" ambiguous in general and confusing to someone who is trying to do game development in C++ Removed - "that don't allocate a lot of memory" game engines do allocate a lot of memory." into klp-docs
Diffstat (limited to 'docs/html')
-rw-r--r--docs/html/tools/sdk/ndk/index.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/tools/sdk/ndk/index.jd b/docs/html/tools/sdk/ndk/index.jd
index a22dc90..0ac1881 100644
--- a/docs/html/tools/sdk/ndk/index.jd
+++ b/docs/html/tools/sdk/ndk/index.jd
@@ -245,8 +245,8 @@ This is the Android Software Development Kit License Agreement
but it always increases your app complexity. In general, you should only use the NDK
if it is essential to your app&mdash;never because you simply prefer to program in C/C++.</p>
- <p>Typical good candidates for the NDK are self-contained, CPU-intensive operations that don't
- allocate much memory, such as signal processing, physics simulation, and so on. When examining
+ <p>Typical good candidates for the NDK are CPU-intensive workloads such as game engines,
+ signal processing, physics simulation, and so on. When examining
whether or not you should develop in native code, think about your requirements and see if the
Android framework APIs provide the functionality that you need.</p>