Jason Sams
0e27b5cadb
Fix texture upload bug for narrow texture of less than 32bpp.
2009-11-05 12:44:58 -08:00
Android (Google) Code Review
f476c480cd
Merge change I48cbd0bc into eclair
...
* changes:
remove the SubscribedFeedsProvider since it has been moved to vendor/google
2009-11-05 14:15:54 -05:00
Android (Google) Code Review
67b692920c
Merge change I93f500a5 into eclair
...
* changes:
Fix issue 2203561: Sholes: audio playing out of earpiece.
2009-11-05 02:55:26 -05:00
Eric Laurent
bda7469d9b
Fix issue 2203561: Sholes: audio playing out of earpiece.
...
Create a new IAudioTrack interface to AudioFlinger when start() fails due to a broken pipe error.
Do the same if start fails due to the same error after time out in obtainBuffer().
Do not indicate that the AudioTrack is started to AudioPolicyManager if IAudioTrack start fails.
This avoids that an AudioTrack keeps a dead IAudioTrack after a media server crash.
Same modifications for AudioRecord.
Add a flag to ToneGenerator indicating that the callback thread can call Java. Without it, when the media server crashes and restarts, the AudioSystem error callback will crash in JNI if the IAudiotrack is created from AudioTrack callback thread.
2009-11-04 23:47:21 -08:00
Android (Google) Code Review
584bce31b6
Merge change I09282f5b into eclair
...
* changes:
Fix the build (hopefully.)
2009-11-04 21:33:27 -05:00
Romain Guy
cca9e279f8
Fix the build (hopefully.)
...
Change-Id: I09282f5b4ff8b97f6beb1073223d8a943d3ecef4
2009-11-04 18:32:48 -08:00
Android (Google) Code Review
61b0163291
Merge change I9490271c into eclair
...
* changes:
Add BluetoothDevice to SDK AIDL list.
2009-11-04 20:32:00 -05:00
Android (Google) Code Review
62335430b0
Merge change I4499ad72 into eclair
...
* changes:
Fix bad merge fixes build breakage.
2009-11-04 20:27:11 -05:00
Nick Pelly
459ba8639a
Add BluetoothDevice to SDK AIDL list.
...
Bug: 2216702
Change-Id: I9490271ce4be465d5b3acc5e530feaf6e2fa3f57
2009-11-04 17:24:46 -08:00
Eric Olsen
4499ad729a
Fix bad merge fixes build breakage.
...
Signed-off-by: Eric Olsen <eolsen@android.com>
2009-11-04 17:12:41 -08:00
Android (Google) Code Review
131564d26a
Merge change I3bbfb4f9 into eclair
...
* changes:
Remove unused field and add new API to control the children drawing order.
2009-11-04 19:58:00 -05:00
Romain Guy
293451e4f0
Remove unused field and add new API to control the children drawing order.
...
Approved by: xav, hackbod, mcleron.
Change-Id: I3bbfb4f96e3c9adedbb68d78703059a2df1e2013
2009-11-04 16:57:07 -08:00
Android (Google) Code Review
9053fdb32b
Merge change I76127f6f into eclair
...
* changes:
Add support for colored LED on jogball backlight.
2009-11-04 19:39:29 -05:00
Ying Wang
b5e380a799
am e33044ea: (-s ours) Merge change Ib9cc041e into eclair-sdk
...
Merge commit 'e33044eadfa9969e71e50d1aff165cbc436b13f3' into eclair
* commit 'e33044eadfa9969e71e50d1aff165cbc436b13f3':
Explicitly specify that online-sdk depends on framework-res. (do not merge)
2009-11-04 16:18:04 -08:00
Android (Google) Code Review
e33044eadf
Merge change Ib9cc041e into eclair-sdk
...
* changes:
Explicitly specify that online-sdk depends on framework-res. (do not merge)
2009-11-04 19:08:59 -05:00
Ying Wang
b9cc041eb0
Explicitly specify that online-sdk depends on framework-res. (do not merge)
...
this is integrated from Eclair to fix the mac build breakages.
2009-11-04 16:04:26 -08:00
Android (Google) Code Review
595596fe6b
Merge change I561011bc into eclair
...
* changes:
Fix #2176803 - restores from userdebug to user builds not working
2009-11-04 18:52:27 -05:00
Android (Google) Code Review
ef16a545dc
Merge change I2867746d into eclair
...
* changes:
When a thread is about to be put back onto the thread pool ensure that it is in the foreground cgroup.
2009-11-04 17:54:00 -05:00
Mathias Agopian
36fe3eeaa0
part of fix [2186418] switch passion to 24-bits framebuffer
...
add support for RGBX_8888 EGLConfigs in the software renderer
(since that's what we're using in the MDP case)
2009-11-04 14:51:18 -08:00
Eric Olsen
f42f15cf45
Add support for colored LED on jogball backlight.
...
Signed-off-by: Eric Olsen <eolsen@android.com>
2009-11-04 14:31:26 -08:00
Jason Parks
2867746d7b
When a thread is about to be put back onto the thread pool ensure that it is in the foreground cgroup.
2009-11-04 14:25:26 -08:00
Dirk Dougherty
5fc71e6749
am 00e44ef2: Merge change I54545dfd into eclair-sdk
...
Merge commit '00e44ef21777f32b67a8d51ee375cd290a3fb2d4' into eclair
* commit '00e44ef21777f32b67a8d51ee375cd290a3fb2d4':
doc change: fix broken R.styleable formatting (caused by missing periods). Adjust table markup.
2009-11-04 14:12:29 -08:00
Android (Google) Code Review
00e44ef217
Merge change I54545dfd into eclair-sdk
...
* changes:
doc change: fix broken R.styleable formatting (caused by missing periods). Adjust table markup.
2009-11-04 17:04:41 -05:00
Christopher Tate
78dd4a7371
Fix #2176803 - restores from userdebug to user builds not working
...
The underlying issue is that ordinarily, the restore mechanism checks the
signature block of the package which uploaded the restore data against the
signature of the package on-device that will be handling the restore. This is
to ensure that the restore goes to the "same" application as the one that
uploaded it.
However, applications bundled on the system partition as part of the device
build are signed not with a permanent, app-identifying signature, but rather
with the device's signature block, which is different for each kind of device
and potentially between kinds of build for the same device. That renders the
stored backup data unusable when changing devices / builds / etc.
This change works around the problem by explicitly privileging applications that
reside on the system partition: they have been built into the device, and so
are trusted to be able to handle data that is marked as coming from its package
name.
Change-Id: I561011bce2b54cff3e695e82e7544b126b6ac31e
2009-11-04 13:27:56 -08:00
Android (Google) Code Review
9a54d7dddc
Merge change Ibbf945f3 into eclair
...
* changes:
fix [2236832] software OpenGL ES driver doesn't work on sholes
2009-11-04 15:45:39 -05:00
Android (Google) Code Review
c20fc77c5a
Merge change Iefd4a388 into eclair
...
* changes:
Suppress flaky test AppCacheTest#testFreeApplicationCacheSomeFiles
2009-11-04 14:56:14 -05:00
Android (Google) Code Review
7ed0ceeba5
Merge change I6869df3a into eclair
...
* changes:
Add new audio sources to support the A1026 recording configurations.
2009-11-04 11:49:25 -05:00
Mike Lockwood
27c6dd7aa4
PowerManagerService: Fix manual brightness mode.
...
Change-Id: I10aec64e3f7ae2715475b9797565747295c19a00
Signed-off-by: Mike Lockwood <lockwood@android.com>
2009-11-04 08:57:07 -05:00
Mathias Agopian
bbf945f3c0
fix [2236832] software OpenGL ES driver doesn't work on sholes
...
make sure to not pass our fake handles to the real gralloc
2009-11-03 21:08:06 -08:00
Jean-Michel Trivi
6869df3a5d
Add new audio sources to support the A1026 recording configurations.
2009-11-03 19:43:21 -08:00
Romain Guy
e1e0dc8e6e
Make sure we relayout the TextView when the text changes and marquee is enabled.
...
Bug #2192881 .
Change-Id: Iffc2d15947a11974d9dc175740e3a5489cd43d21
2009-11-03 17:24:55 -08:00
Android (Google) Code Review
decc139b23
Merge change I7a824efc into eclair
...
* changes:
Support applications changing the surface attached to the RS.
2009-11-03 18:56:03 -05:00
Dirk Dougherty
59ad275e93
doc change: fix broken R.styleable formatting (caused by missing periods). Adjust table markup.
...
Bug: 2230588
Change-Id: I54545dfd9d26acef567e586cfc916f6b883a4de7
2009-11-03 15:33:37 -08:00
Android (Google) Code Review
86396f97c9
Merge changes Idcdd2978,Ied564b31,I6179126d into eclair
...
* changes:
Fix 2233444 (No IME).
Revert "Revert "Fix notification bar performance.""
Revert "Revert "fix 2233092 - Notification shade gets stuck half-open""
2009-11-03 18:20:25 -05:00
Fred Quintana
48cbd0bcd6
remove the SubscribedFeedsProvider since it has been moved to vendor/google
2009-11-03 15:05:36 -08:00
Android (Google) Code Review
21977eb0f1
Merge change I56981989 into eclair
...
* changes:
fix [2231527] Compatibility with SpaceJunk game (OpenGL)
2009-11-03 18:04:49 -05:00
Jason Sams
efd9b6fb2e
Support applications changing the surface attached to the RS.
2009-11-03 14:15:28 -08:00
Android (Google) Code Review
83665194ab
Merge change I9d5e03db into eclair
...
* changes:
Fix RS bugs. We were holding a pointer to the script text from the java vm. Move freeing of objects to before context teardown to allow allocations to clean up their data.
2009-11-03 16:56:31 -05:00
Android (Google) Code Review
c6e88afb3e
Merge change If2fdad3b into eclair
...
* changes:
Add a warning when we leave threads in the binder thread pool in the background scheduling group.
2009-11-03 16:29:22 -05:00
Amith Yamasani
6179126dad
Fix 2233444 (No IME).
...
Fix the flags for the StatusBarExpanded window that were causing the Window Manager to
think that it needed input.
2009-11-03 13:22:24 -08:00
Amith Yamasani
ed564b319d
Revert "Revert "Fix notification bar performance.""
...
This reverts commit 6e8f47b0ed2ffdb55b695d9f154cccd3ea3c98de.
2009-11-03 13:20:21 -08:00
Amith Yamasani
dcdd29781a
Revert "Revert "fix 2233092 - Notification shade gets stuck half-open""
...
This reverts commit b96a9d9296925fef6a1c0e5ad4d847d96bf9acb5.
2009-11-03 13:18:03 -08:00
Jason Parks
dabcf4151a
Add a warning when we leave threads in the binder thread pool in the background scheduling group.
2009-11-03 13:10:15 -08:00
Android Git Automerger
b96a9d9296
Revert "fix 2233092 - Notification shade gets stuck half-open"
...
As per Dr. No; revert commit 6a7899a8d6444989657d1058666269263b5b50c0.
2009-11-03 12:29:46 -08:00
Android Git Automerger
6e8f47b0ed
Revert "Fix notification bar performance."
...
As per Dr. No; revert commit 0d7dc3b800d0489c43ad9071615b2b4ebec80443.
2009-11-03 12:26:15 -08:00
Android (Google) Code Review
9ed30f93f6
Merge change I96444af2 into eclair
...
* changes:
Unhide View.isOpaque().
2009-11-03 15:10:21 -05:00
Romain Guy
732046f874
Unhide View.isOpaque().
...
Change-Id: I96444af2a7e66a330a2c4b3fa0a173ec5ab4ed40
2009-11-03 12:09:04 -08:00
Android (Google) Code Review
338ccf43b6
Merge change Id2906ad8 into eclair
...
* changes:
Fix video flickering by propagating the NO_CACHING flag from the master to MemoryHeapPMem.
2009-11-03 14:53:02 -05:00
Android (Google) Code Review
c54e0ce964
Merge change Ia86f2849 into eclair
...
* changes:
Fix layoutlib tests so they pas when run from Eclipse workbench.
2009-11-03 14:29:39 -05:00
Jason Sams
9d5e03db99
Fix RS bugs. We were holding a pointer to the script text from the java vm. Move freeing of objects to before context teardown to allow allocations to clean up their data.
2009-11-03 11:25:42 -08:00