summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsScriptC.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix RS bugs. We were holding a pointer to the script text from the java vm. ↵Jason Sams2009-11-031-4/+0
| | | | Move freeing of objects to before context teardown to allow allocations to clean up their data.
* Reduce debugging spew and add props to selectivly re-enable it.Jason Sams2009-09-251-2/+2
| | | | change-id: Ib59ed5d7a9d479ccd1af456029735dbc65ae1efe
* 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-5/+3
|
* Improve structure support using symbol lookup of named structures in scripts ↵Jason Sams2009-09-031-0/+4
| | | | to allow them to appear as just pointers to structs.
* Update fountain and add writable flag to script slots.Jason Sams2009-08-171-0/+1
|
* Implement named slots and convert script.addType to script.setType to remove ↵Jason Sams2009-08-131-1/+1
| | | | ordering restrictions.
* Implement reflecting Java objects into the ACC enviroment.Jason Sams2009-08-121-1/+3
|
* Let java put #defines into renderscriptJoe Onorato2009-08-091-0/+6
|
* Split rsScriptC into class implemtation and library functions. Update test ↵Jason Sams2009-07-201-2/+4
| | | | apps, all 3 should be working.
* Fix conflict with automatic DPI support on high density devices by forcing ↵Jason Sams2009-07-161-0/+1
| | | | bitmap loading to not be scaled.
* Update rollo and renderscript to the new ACC compiler interface.Jason Sams2009-07-161-0/+8
|
* checkpoint filmstrip, implemented TLS.Jason Sams2009-06-191-6/+0
|
* Add named objects and implement support for ProgramFragmentStore and ↵Jason Sams2009-06-101-1/+1
| | | | ProgramFragment to be used by name in scripts.
* checkpoint pragma support. Includes more cleanup of script enviroment ↵Jason Sams2009-06-091-1/+1
| | | | storage to keep the env settings in the base and only the per language state in ScriptC.
* Move placement of script enviroment data to base.Jason Sams2009-06-081-13/+3
|
* Fix build issue and ref count bug with scripts.Jason Sams2009-06-081-12/+24
|
* Move call to compiler from jni to core library code.Jason Sams2009-06-051-1/+6
|
* Add support for scripts to return an animation flag. This allows them to ↵Jason Sams2009-06-041-1/+1
| | | | 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-3/+6
| | | | Previously we had been leaking the ACCscript object.
* Add the Renderscript library. (Not in the build by default yet.)Jason Sams2009-05-221-0/+76
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