Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement data push from scripts. Fixes the problem where apps would have ↵ | Jason Sams | 2009-10-06 | 1 | -0/+1 |
| | | | | | | | | to poll to monitor a scripts state. Fix bug in StoreState where state could be overridden by the default unless the script used more than one state. Change only impacts renderscript and renderscript apps. | ||||
* | Reduce debugging spew and add props to selectivly re-enable it. | Jason Sams | 2009-09-25 | 1 | -2/+2 |
| | | | | change-id: Ib59ed5d7a9d479ccd1af456029735dbc65ae1efe | ||||
* | Improve renderscript context teardown. Track object in the system and then ↵ | Jason Sams | 2009-09-25 | 1 | -0/+4 |
| | | | | 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. | ||||
* | Make the renderscript timing logging available by setting debug.rs.profile=1 | Joe Onorato | 2009-09-23 | 1 | -6/+6 |
| | |||||
* | Implement java interface for RS shutdown and fix shutdown deadlock with the ↵ | Jason Sams | 2009-08-25 | 1 | -0/+5 |
| | | | | command fifo. | ||||
* | Improved RS timing code to monitor where we spend CPU time. | Jason Sams | 2009-08-19 | 1 | -2/+8 |
| | |||||
* | Remove global IO context and integrate it into the RS context. | Jason Sams | 2009-08-17 | 1 | -2/+0 |
| | |||||
* | Cleanup logging and fix a startup race condition that manifested on Firestone. | Jason Sams | 2009-06-23 | 1 | -6/+1 |
| | |||||
* | Cleanup includes so Log.h can use the tag. rsUtils.h is the file that ↵ | Jason Sams | 2009-06-22 | 1 | -2/+0 |
| | | | | should be included everywhere and contain rs global defines. | ||||
* | Replace spins with proper pthread conditions. | Jason Sams | 2009-06-18 | 1 | -2/+3 |
| | |||||
* | Add support for scripts to return an animation flag. This allows them to ↵ | Jason Sams | 2009-06-04 | 1 | -1/+4 |
| | | | | indicate they are generating changing content and the rs thread to sleep if the content is static. | ||||
* | Add the Renderscript library. (Not in the build by default yet.) | Jason Sams | 2009-05-22 | 1 | -0/+55 |
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 |