summaryrefslogtreecommitdiff
path: root/rsScriptC.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix build issue and ref count bug with scripts.Jason Sams2009-06-081-44/+35
|
* Move call to compiler from jni to core library code.Jason Sams2009-06-051-1/+29
|
* Add support for scripts to return an animation flag. This allows them to ↵Jason Sams2009-06-041-2/+2
| | | | indicate they are generating changing content and the rs thread to sleep if the content is static.
* Delete the acc script when deleting the Renderscript rsScriptC object.Jack Palevich2009-05-281-1/+14
| | | | Previously we had been leaking the ACCscript object.
* Implement first pass bitmap to allocation support. The Java bindings can ↵Jason Sams2009-05-271-4/+38
| | | | create a 2D allocation by passing in a Bitmap object.
* Fix Fountain test app so that it actually builds.Jack Palevich2009-05-261-40/+40
| | | | Also check in first part of an libACC implementation.
* Add the Renderscript library. (Not in the build by default yet.)Jason Sams2009-05-221-0/+454
This library can be used to create animated 3D User Interfaces. This library is currently under heavy development, so it's not part of the build by default. In order to build this library, you must define BUILD_RENDERSCRIPT=true in your build environment. You will also have to manually edit build/core/prelink-linux-arm.map And add libRS and libRS_jni at the end like this (exact address may change.) libRS.so 0x9A100000 libRS_jni.so 0x9A000000