Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | beging np2 extension check work. | Jason Sams | 2010-02-22 | 1 | -2/+2 |
| | |||||
* | Fix some minor bugs with GL state setup that were exposed by Droids driver. | Jason Sams | 2010-01-27 | 1 | -4/+7 |
| | |||||
* | More complete support for named attribs. Adds user typed attribs as ↵ | Jason Sams | 2010-01-06 | 1 | -2/+2 |
| | | | | available to programVertex. Non user attribs are not treated like user for GL2 for simplicity. | ||||
* | Element restructuring. Add support for new basic Element types including ↵ | Jason Sams | 2009-12-23 | 1 | -5/+31 |
| | | | | | | 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. | ||||
* | Move texture bindings to base program object. Change ProgramFragment ↵ | Jason Sams | 2009-12-17 | 1 | -115/+33 |
| | | | | creation to require a texture format in 1.0 mode. | ||||
* | Place shader logging behind prop to declutter logs. | Jason Sams | 2009-12-15 | 1 | -2/+2 |
| | |||||
* | Continue es2 shader dev | Jason Sams | 2009-12-15 | 1 | -41/+72 |
| | | | | | | | Conflicts: graphics/java/android/renderscript/Program.java graphics/java/android/renderscript/ProgramVertex.java | ||||
* | Continue development of es2.0 user shader support for renderscript. This ↵ | Jason Sams | 2009-12-15 | 1 | -2/+1 |
| | | | | change cleans up ProgramVertex creation and adds support for passing input, output, and constant type info. | ||||
* | Implement RS tracked defered texture and buffer object uploads. | Jason Sams | 2009-12-14 | 1 | -0/+2 |
| | |||||
* | Beging GL2 user shaders. Switch master to using GL2 by default. | Jason Sams | 2009-11-30 | 1 | -3/+16 |
| | |||||
* | Begin gl2 support. Renderscript still uses GL1.1 by default. However, 2.0 ↵ | Jason Sams | 2009-11-25 | 1 | -0/+102 |
| | | | | can be enabled and will render most tests correctly. | ||||
* | Improved object lifecycle tracking and fix leaks. | Jason Sams | 2009-09-25 | 1 | -0/+8 |
| | |||||
* | Improve renderscript context teardown. Track object in the system and then ↵ | Jason Sams | 2009-09-25 | 1 | -4/+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. | ||||
* | Fix point sprites. | Romain Guy | 2009-09-04 | 1 | -0/+5 |
| | | | | Change-Id: Ic9438daaf25f3969a0dd5b634b7cceccbbbfb27b | ||||
* | Implement async data/subData. Implement TriangleMeshBuilder in SimpleMesh ↵ | Jason Sams | 2009-08-27 | 1 | -1/+1 |
| | | | | which replaces TriangleMesh. Update Film to use new builder. | ||||
* | Add support for selecting the color bit depth and if the application used a ↵ | Jason Sams | 2009-08-25 | 1 | -2/+4 |
| | | | | depth buffer. | ||||
* | Point Sprites | Jason Sams | 2009-08-20 | 1 | -20/+14 |
| | |||||
* | Cleanup of object destruction. No need to have a per-class destruction ↵ | Jason Sams | 2009-08-18 | 1 | -9/+0 |
| | | | | function. This was a legacy of the distant past when the classes did not have a common base. | ||||
* | Begin implementing SimpleMesh and fix some bugs with refcounting and java ↵ | Jason Sams | 2009-08-09 | 1 | -7/+0 |
| | | | | object destruction tracking. | ||||
* | Remove useless slot from ProgramVertex. Optimize GL state setup. | Jason Sams | 2009-08-05 | 1 | -4/+11 |
| | |||||
* | Add support for multitexture and fix allocation ref counting bug in RS. Add ↵ | Jason Sams | 2009-07-02 | 1 | -8/+26 |
| | | | | plaque to rollo and leave it disabled due to ugly appearance. | ||||
* | Cleanup logging and fix a startup race condition that manifested on Firestone. | Jason Sams | 2009-06-23 | 1 | -2/+0 |
| | |||||
* | Cleanup includes so Log.h can use the tag. rsUtils.h is the file that ↵ | Jason Sams | 2009-06-22 | 1 | -0/+3 |
| | | | | should be included everywhere and contain rs global defines. | ||||
* | Implement default programs and implement defaults and parents for imports. | Jason Sams | 2009-06-17 | 1 | -0/+5 |
| | |||||
* | Add named objects and implement support for ProgramFragmentStore and ↵ | Jason Sams | 2009-06-10 | 1 | -0/+8 |
| | | | | ProgramFragment to be used by name in scripts. | ||||
* | Add sampler support | Jason Sams | 2009-05-28 | 1 | -4/+4 |
| | |||||
* | Implement first pass bitmap to allocation support. The Java bindings can ↵ | Jason Sams | 2009-05-27 | 1 | -2/+9 |
| | | | | create a 2D allocation by passing in a Bitmap object. | ||||
* | Add the Renderscript library. (Not in the build by default yet.) | Jason Sams | 2009-05-22 | 1 | -0/+212 |
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 |