summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsComponent.h
Commit message (Collapse)AuthorAgeFilesLines
* Cleaup of rsComponent to remove GL types.Jason Sams2011-05-261-2/+0
| | | | Change-Id: I9f82bafe42f5fb30335b15f38eb251dc1ec62e80
* Code cleanup to make formatting consistentAlex Sakhartchouk2010-11-101-2/+1
| | | | | | across all the renderscript files. Change-Id: Idf5fcc60877e44c8f074f7176e37f70b3b895a3c
* Refcounting in allocations.Jason Sams2010-08-091-0/+2
| | | | Change-Id: Ida2dfb404b2cd832e622d981d73a938d5bc5b821
* Move ImageProcessing and ModelViewer to reflected files.Jason Sams2010-06-211-1/+0
| | | | | | Implement boolean support. Change-Id: Iac2dc28067ac430b3e413fc651dfaa0b96214e2e
* Removed unnecessary change based on comments.Alex Sakhartchouk2010-05-211-0/+4
| | | | | | | | | | | | | | | | | Now using android utils lib. collada_to_a3d seems to work with android util libs. Integrating old changelist Changing assert to rsAssrt in VertexArray making context compile. Change-Id: I33890defa777f09253bfab630d97782359ec49d7 Added serialization code to rsLib Integrated old changelist Change-Id: Ie4746113f6d1817fbb3264f97fdddde25b779311 Added serialization code to rsLib Change-Id: Ie4746113f6d1817fbb3264f97fdddde25b779311
* Add RS support for generic attribs as input to vertex programs.Jason Sams2010-01-041-0/+1
|
* Element restructuring. Add support for new basic Element types including ↵Jason Sams2009-12-231-0/+68
| | | | | | the RS objects and vectors(2-4). In theory this paves the way for maintaining type info for RS objects, passing elements for GLSL uiforms/attribs/varyings, and supporting nested structures. This will break some apps, checkings for other projects will follow to unbreak them.
* Continue development of es2.0 user shader support for renderscript. This ↵Jason Sams2009-12-151-78/+0
| | | | change cleans up ProgramVertex creation and adds support for passing input, output, and constant type info.
* Improve logging code to dump more detaild rs object info. Fix bug with ↵Jason Sams2009-09-271-0/+1
| | | | predefined elements not being recreated for contexts after one was destroyed. Add stricter type enforcement.
* Improve renderscript context teardown. Track object in the system and then ↵Jason Sams2009-09-251-2/+2
| | | | 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.
* Point SpritesJason Sams2009-08-201-2/+2
|
* Implement named slots and convert script.addType to script.setType to remove ↵Jason Sams2009-08-131-0/+1
| | | | ordering restrictions.
* Implement reflecting Java objects into the ACC enviroment.Jason Sams2009-08-121-1/+4
|
* Begin implementing SimpleMesh and fix some bugs with refcounting and java ↵Jason Sams2009-08-091-0/+2
| | | | object destruction tracking.
* Cleanup includes so Log.h can use the tag. rsUtils.h is the file that ↵Jason Sams2009-06-221-5/+1
| | | | should be included everywhere and contain rs global defines.
* Add the Renderscript library. (Not in the build by default yet.)Jason Sams2009-05-221-0/+75
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