summaryrefslogtreecommitdiffstats
path: root/libs
Commit message (Collapse)AuthorAgeFilesLines
* Fix issue 2045911: Camera Shutter tone does not play correctly while ↵Eric Laurent2009-08-272-75/+201
| | | | | | listening to music. Add the possibility to delay routing and volume commands in AudioPolicyClientInterface. The delay is not blocking for the caller.
* dumpsys SurfaceFlinger will now always dump SF's state, even if SF is deadlockedMathias Agopian2009-08-262-1/+58
| | | | | | | | (in this case the state is dumped without the proper locks held which could result to a crash) in addition, the last transaction and swap times are printed to the dump as well as the time spent *currently* in these function. For instance, if SF is unresponsive because eglSwapBuffers() is stuck, this will show up here.
* Remove bogus comments and logging.Jason Sams2009-08-253-14/+11
|
* Implement java interface for RS shutdown and fix shutdown deadlock with the ↵Jason Sams2009-08-255-6/+30
| | | | command fifo.
* Add support for selecting the color bit depth and if the application used a ↵Jason Sams2009-08-2516-97/+128
| | | | depth buffer.
* Remove Galaxy Render Script, replaced by its wallpaper equivalent.Romain Guy2009-08-249-594/+0
| | | | Change-Id: I28c91d648fe5ab6e794bf55d11879388b139dbe9
* Merge change 22352 into eclairAndroid (Google) Code Review2009-08-211-2/+5
|\ | | | | | | | | * changes: Fix FallRS by keeping a reference to the mesh.
| * Fix FallRS by keeping a reference to the mesh.Romain Guy2009-08-211-2/+5
| |
* | fix [2070341] [FAST BLOCKER] can't successfully setup erc52Mathias Agopian2009-08-211-2/+12
|/
* Merge change 22169 into eclairAndroid (Google) Code Review2009-08-202-3/+40
|\ | | | | | | | | * changes: Cleanup the Galaxy, add a few RS functions for Grass.
| * Cleanup the Galaxy, add a few RS functions for Grass.Romain Guy2009-08-202-3/+40
| |
* | Point SpritesJason Sams2009-08-2010-44/+50
| |
* | Add offset handling in MemoryHeapBase classBenny Wong2009-08-201-4/+4
|/
* Merge change 22024 into eclairAndroid (Google) Code Review2009-08-191-56/+69
|\ | | | | | | | | * changes: Micro-optimizations for FallRS
| * Micro-optimizations for FallRSRomain Guy2009-08-191-56/+69
| |
* | Merge change 22021 into eclairAndroid (Google) Code Review2009-08-196-21/+27
|\ \ | | | | | | | | | | | | * changes: fix a bug that caused the PixelFormat viewed by Surface to be wrong.
| * | fix a bug that caused the PixelFormat viewed by Surface to be wrong.Mathias Agopian2009-08-196-21/+27
| | | | | | | | | | | | | | | what happened is that the efective pixel format is calculated by SF but Surface nevew had access to it directly. in particular this caused query(FORMAT) to return the requested format instead of the effective format.
* | | Merge change 22011 into eclairAndroid (Google) Code Review2009-08-192-36/+62
|\ \ \ | |/ / | | / | |/ |/| * changes: fix [2063336] Surface.lockSurface throws IllegalArgumentException when out of memory
| * fix [2063336] Surface.lockSurface throws IllegalArgumentException when out ↵Mathias Agopian2009-08-192-36/+62
| | | | | | | | of memory
* | Improved performance in Galaxy and FallRomain Guy2009-08-195-91/+97
|/
* Merge change 21927 into eclairAndroid (Google) Code Review2009-08-193-22/+83
|\ | | | | | | | | * changes: Improved RS timing code to monitor where we spend CPU time.
| * Improved RS timing code to monitor where we spend CPU time.Jason Sams2009-08-193-22/+83
| |
* | Move the skyRomain Guy2009-08-194-198/+166
| |
* | Tweak the water and its textureRomain Guy2009-08-183-49/+21
| |
* | Merge change 21831 into eclairAndroid (Google) Code Review2009-08-183-29/+49
|\ \ | |/ |/| | | | | * changes: Add reflections to the water
| * Add reflections to the waterRomain Guy2009-08-183-29/+49
| |
* | Implement OOB destroy method that can be called from the java finalizer ↵Jason Sams2009-08-184-10/+90
| | | | | | | | removing the need to explicitly destroy objects.
* | Cleanup of object destruction. No need to have a per-class destruction ↵Jason Sams2009-08-1812-121/+25
|/ | | | function. This was a legacy of the distant past when the classes did not have a common base.
* Tweak the galaxyRomain Guy2009-08-184-24/+67
|
* Merge change 21660 into eclairAndroid (Google) Code Review2009-08-175-141/+122
|\ | | | | | | | | * changes: Optimized Galaxy
| * Optimized GalaxyRomain Guy2009-08-175-141/+122
| |
* | Merge change 21653 into eclairAndroid (Google) Code Review2009-08-175-18/+14
|\ \ | | | | | | | | | | | | * changes: Remove global IO context and integrate it into the RS context.
| * | Remove global IO context and integrate it into the RS context.Jason Sams2009-08-175-18/+14
| |/
* | Support for marshalling pointers / intptr_t in Parcel.Andreas Huber2009-08-171-95/+63
|/ | | | Some refactoring to eliminate code duplication in Parcel implementation.
* Update fountain and add writable flag to script slots.Jason Sams2009-08-179-111/+108
|
* Merge change 21471 into eclairAndroid (Google) Code Review2009-08-1610-0/+650
|\ | | | | | | | | * changes: Add Galaxy wallpaper
| * Add Galaxy wallpaperRomain Guy2009-08-1610-0/+650
| |
* | make sure to update a surface's usage bits when it changes, instead of only ↵Mathias Agopian2009-08-141-23/+52
|/ | | | | | the first time. also fixed a few locking issues in Surface and commented how each member is protected.
* fix a bug that could cause a window to be hidden in some cases.Mathias Agopian2009-08-131-1/+6
| | | | | | | this would happen is the window is made visible but the client didn't render yet into it. This happens often with SurfaceView. Instead of filling the window with solid black, SF would simply ignore it which could lead to more disturbing artifacts. in theory the window manager should not display a window before it has been drawn into, but it does happen occasionnaly.
* Surface::GPU and Surface::HARDWARE are now deprecated; they will be set ↵Mathias Agopian2009-08-132-5/+0
| | | | | | automatically if needed. this also ripples into the window manager API by making some constant there deprecated as well.
* Merge change 21152Android (Google) Code Review2009-08-1310-64/+123
|\ | | | | | | | | * changes: Implement named slots and convert script.addType to script.setType to remove ordering restrictions.
| * Implement named slots and convert script.addType to script.setType to remove ↵Jason Sams2009-08-1310-64/+123
| | | | | | | | ordering restrictions.
* | Merge change 21059Android (Google) Code Review2009-08-121-4/+11
|\ \ | | | | | | | | | | | | * changes: make sure EGL_ANDROID_swap_rectangle is actually supported before using it
| * | make sure EGL_ANDROID_swap_rectangle is actually supported before using itMathias Agopian2009-08-121-4/+11
| | |
* | | Merge change 21057Android (Google) Code Review2009-08-121-1/+1
|\ \ \ | |/ / | | / | |/ |/| * changes: Better error handling in EGL extensions
| * Better error handling in EGL extensionsMathias Agopian2009-08-121-1/+1
| |
* | Implement reflecting Java objects into the ACC enviroment.Jason Sams2009-08-1214-106/+126
| |
* | Grass has graduated from an RS experiment to a real live wallpaper.Romain Guy2009-08-1210-579/+0
| |
* | am b8546001: Merge change 20878 into donutDianne Hackborn2009-08-121-5/+53
|\ \ | |/ |/| | | | | | | | | Merge commit 'b8546001701405a76dad7e6235046e592296fac2' * commit 'b8546001701405a76dad7e6235046e592296fac2': Fix issue #2048263: More debugging information
| * Fix issue #2048263: More debugging informationDianne Hackborn2009-08-111-5/+53
| | | | | | | | | | We now hopefully do better about generating the anr reports, and include information about the malloc loaded assets in meminfo.