summaryrefslogtreecommitdiff
path: root/rsLocklessFifo.cpp
AgeCommit message (Collapse)Author
2010-08-18Fix bug looping non-blocking fifos.Jason Sams
Change-Id: I33dcf575466bfef672af4e113ad692397b5213e9
2010-03-26Seperate out Mutex and Signal code into reusable classes.Jason Sams
Change-Id: I381d09d89b567d433a10a91e0d7e59c24d3444d8
2009-11-12Defer EGL init until the surface changed call comes in. Pass w,h along with ↵Jason Sams
surface for verification of driver state.
2009-10-06Implement data push from scripts. Fixes the problem where apps would have ↵Jason Sams
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.
2009-09-25Improve renderscript context teardown. Track object in the system and then ↵Jason Sams
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.
2009-09-24Fix invokables to make sure script pointers are setup before invoking ↵Jason Sams
function calls. Reduce app startup time up to 1s.
2009-08-25Implement java interface for RS shutdown and fix shutdown deadlock with the ↵Jason Sams
command fifo.
2009-06-23Cleanup logging and fix a startup race condition that manifested on Firestone.Jason Sams
2009-06-22Cleanup includes so Log.h can use the tag. rsUtils.h is the file that ↵Jason Sams
should be included everywhere and contain rs global defines.
2009-06-18Replace spins with proper pthread conditions.Jason Sams
2009-06-03Generalize bitmap support and add remaining GL formats.Jason Sams
Fix bug in command fifo looping case.
2009-05-22Add the Renderscript library. (Not in the build by default yet.)Jason Sams
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