summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsSampler.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Cleaning up the serialization change.Alex Sakhartchouk2011-01-311-7/+3
| | | | | | Renaming the define to be more in line with what it does and removing the host stub header file. Change-Id: Ibd3a0a6a398c7f81cc661f71e4478707fe1679ed
* Re-implement img npot support in HC.Jason Sams2011-01-131-2/+14
| | | | Change-Id: Iac56ec54e46c998ec14f71d8e85eccdc5fb3aa91
* Cleanup and refactoring of an earlier cl.Alex Sakhartchouk2010-12-151-0/+2
| | | | Change-Id: I5e356ed88375a1620846e0c500659e3b7ead5030
* Support for cubemaps.Alex Sakhartchouk2010-11-181-11/+14
| | | | Change-Id: Iaf6087f614451a8e233b3e5bc49c834ab0ad08ee
* Code cleanup to make formatting consistentAlex Sakhartchouk2010-11-101-42/+15
| | | | | | across all the renderscript files. Change-Id: Idf5fcc60877e44c8f074f7176e37f70b3b895a3c
* Adding nvidia extension for limited npot support.Alex Sakhartchouk2010-10-271-1/+5
| | | | | | Updating a3d loading to be async. Change-Id: I4be71d2002b9ad6ab8896d63e625f031e6b7ea6c
* Fix refcounting bugs where the sys refcountJason Sams2010-10-211-4/+0
| | | | | | | | | | could be corrupted during async type creation. Change-Id: If42828e92990598b0cb5da81c82ea513f94725f2 Fix stack object deletion bug. Change-Id: I2c723aa5ad15e0c99dc9cd0cfbc7db80bace172a
* Adding anisotropic filtering and related samples.Alex Sakhartchouk2010-09-301-3/+27
| | | | Change-Id: Idb173274417feb5e25bfd64c5e9fa2492a23a17e
* Cleanup GL setup code and remove legacy 1.1 paths.Jason Sams2010-09-161-3/+7
| | | | | | Reset pointers to NULL when allocations are unbound. Change-Id: Ifaba634ecbb154970b7fb47faa8e6475d16d2f66
* Fix partial NP2 support and restrict mipmaps and clampJason Sams2010-09-141-12/+16
| | | | | | | modes on HW that does not support proper NP2 bug 2965170 Change-Id: If9a3ac45264861fc75b9616e98957e12a5464411
* Removed unnecessary change based on comments.Alex Sakhartchouk2010-05-211-1/+18
| | | | | | | | | | | | | | | | | 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
* beging np2 extension check work.Jason Sams2010-02-221-2/+12
|
* Fix some minor bugs with GL state setup that were exposed by Droids driver.Jason Sams2010-01-271-4/+5
|
* Begin gl2 support. Renderscript still uses GL1.1 by default. However, 2.0 ↵Jason Sams2009-11-251-1/+0
| | | | can be enabled and will render most tests correctly.
* Improved object lifecycle tracking and fix leaks.Jason Sams2009-09-251-0/+4
|
* Improve renderscript context teardown. Track object in the system and then ↵Jason Sams2009-09-251-4/+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.
* Implement async data/subData. Implement TriangleMeshBuilder in SimpleMesh ↵Jason Sams2009-08-271-1/+1
| | | | which replaces TriangleMesh. Update Film to use new builder.
* Point SpritesJason Sams2009-08-201-0/+1
|
* Cleanup of object destruction. No need to have a per-class destruction ↵Jason Sams2009-08-181-10/+3
| | | | function. This was a legacy of the distant past when the classes did not have a common base.
* Cleanup includes so Log.h can use the tag. rsUtils.h is the file that ↵Jason Sams2009-06-221-4/+1
| | | | should be included everywhere and contain rs global defines.
* Implement sampler GL setup code.Jason Sams2009-05-281-14/+9
|
* Add sampler supportJason Sams2009-05-281-1/+23
|
* Add the Renderscript library. (Not in the build by default yet.)Jason Sams2009-05-221-0/+143
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