summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsLocklessFifo.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Defer EGL init until the surface changed call comes in. Pass w,h along with ↵Jason Sams2009-11-121-1/+1
| | | | surface for verification of driver state.
* Implement data push from scripts. Fixes the problem where apps would have ↵Jason Sams2009-10-061-0/+6
| | | | | | | | 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.
* Improve renderscript context teardown. Track object in the system and then ↵Jason Sams2009-09-251-0/+6
| | | | 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-2/+2
| | | | function calls. Reduce app startup time up to 1s.
* Implement java interface for RS shutdown and fix shutdown deadlock with the ↵Jason Sams2009-08-251-4/+15
| | | | command fifo.
* Cleanup logging and fix a startup race condition that manifested on Firestone.Jason Sams2009-06-231-8/+1
|
* Cleanup includes so Log.h can use the tag. rsUtils.h is the file that ↵Jason Sams2009-06-221-1/+0
| | | | should be included everywhere and contain rs global defines.
* Replace spins with proper pthread conditions.Jason Sams2009-06-181-12/+85
|
* Generalize bitmap support and add remaining GL formats.Jason Sams2009-06-031-4/+6
| | | | Fix bug in command fifo looping case.
* Add the Renderscript library. (Not in the build by default yet.)Jason Sams2009-05-221-0/+180
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