summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsScript.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Improve RS error handling. On errors RS will now store the error and a ↵Jason Sams2010-03-031-0/+4
| | | | message that can be read from the app. RS will then not continue rendering frames while an unchecked error is present until new state is received.
* Improved object lifecycle tracking and fix leaks.Jason Sams2009-09-251-0/+2
|
* Improve renderscript context teardown. Track object in the system and then ↵Jason Sams2009-09-251-1/+1
| | | | force their cleanup by releasing all user references once destroy context is called. Java layer will no longer send destroy notifications for objects garbage collected once a context is destroyed.
* Fix invokables to make sure script pointers are setup before invoking ↵Jason Sams2009-09-241-0/+1
| | | | function calls. Reduce app startup time up to 1s.
* Implement renderscript Invokables.Jason Sams2009-09-161-1/+16
|
* Cleanup of object destruction. No need to have a per-class destruction ↵Jason Sams2009-08-181-6/+0
| | | | function. This was a legacy of the distant past when the classes did not have a common base.
* Update fountain and add writable flag to script slots.Jason Sams2009-08-171-1/+2
|
* Implement named slots and convert script.addType to script.setType to remove ↵Jason Sams2009-08-131-0/+19
| | | | ordering restrictions.
* Split ProgramFragment and ProgramStore from RenderScript.java. Update ↵Jason Sams2009-08-041-0/+26
| | | | Element and Type to new cached builder for easier app developement.
* Move placement of script enviroment data to base.Jason Sams2009-06-081-5/+6
|
* Add the Renderscript library. (Not in the build by default yet.)Jason Sams2009-05-221-0/+54
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