From: Bill Wendling Date: Wed, 26 Oct 2011 00:12:04 +0000 (+0000) Subject: Add mention of Renderscript to external OS projects. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=537d85bda8c28c01fb14ec3109d2f357c4bec1b6;p=oota-llvm.git Add mention of Renderscript to external OS projects. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142988 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 8a4a76d9488..98b16ad2842 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -372,6 +372,25 @@ object-oriented programming, operator overloading and strong typing.

+ +

Renderscript

+ +
+ +

Renderscript + is Android's advanced 3D graphics rendering and compute API. It provides a + portable C99-based language with extensions to facilitate common use cases + for enhancing graphics and thread level parallelism. The Renderscript + compiler frontend is based on Clang/LLVM. It emits a portable bitcode format + for the actual compiled script code, as well as reflects a Java interface for + developers to control the execution of the compiled bitcode. Executable + machine code is then generated from this bitcode by an LLVM backend on the + device. Renderscript is thus able to provide a mechanism by which Android + developers can improve performance of their applications while retaining + portability.

+ +
+

SAFECode