Mathias Agopian
3cf199aef6
fix an issue with vsync event delivery
...
vsync events were sometimes delivered to connected
client who didn't request them. this happened if
another client requested the delivery and that client
was first in the client list.
also fix the vsync test which didn't request any events as
well as DisplayEventReveiver documentation which was misleading
about the necessity to request vsync events.
Change-Id: Ie990fda3f337f8f0042745c4b2cde67936c45686
2012-01-31 16:42:54 -08:00
Romain Guy
4fb3e778ed
Merge "Add GradientDrawable.setColors(int[])"
2012-01-31 12:12:38 -08:00
James Dong
f2a86c4f94
Merge "First step of refactoring 'timedtext' code."
2012-01-31 12:06:43 -08:00
Andreas Huber
b12307020c
Merge "Slighly improve the API to discover if the OMX stack is running in the local"
2012-01-31 11:27:06 -08:00
John Reck
84bdbe259b
Merge "Webkit text selection"
2012-01-31 11:08:14 -08:00
Chet Haase
e3eefbf1f9
Merge "Add new ViewPropertyAnimator utility methods"
2012-01-31 11:07:25 -08:00
Romain Guy
a459332a5b
Merge "Proper equals/hashCode impls in Rect and RectF"
2012-01-31 10:51:38 -08:00
Jeff Brown
d713bd00b8
Merge "Use O_CLOEXEC when opening input device."
2012-01-31 10:05:51 -08:00
Jeff Brown
b94625cf96
Merge "Add basic support for new suspend-block ioctls."
2012-01-31 10:05:09 -08:00
Makoto Onuki
84987b20ea
Merge "Fix 2 broken PhoneNumberUtilsTest."
2012-01-31 09:14:57 -08:00
Scott Main
7a3c2dfc39
am 123ffc1f: am 34260ad7: Merge "docs: fix locale name; South Africa is local en_ZA external issue 23133" into ics-mr1
...
* commit '123ffc1fa40749dd2f2eef94fa1ab0306604b1ae':
docs: fix locale name; South Africa is local en_ZA external issue 23133
2012-01-31 08:58:51 -08:00
Scott Main
61cf2efec0
am 21e32f20: am 8bfeb10f: Merge "docs: fix typo in market doc external issue 22650" into ics-mr1
...
* commit '21e32f209794dffa51ad61e85a3e0b5070593790':
docs: fix typo in market doc external issue 22650
2012-01-31 08:58:49 -08:00
Scott Main
4630cb7804
resolved conflicts for merge of 20d06540 to master
...
Change-Id: I80da9a11b4538c070b0000cfa3ea6cd865e46aef
2012-01-31 08:55:23 -08:00
Scott Main
7b8d173a28
am 34260ad7: Merge "docs: fix locale name; South Africa is local en_ZA external issue 23133" into ics-mr1
...
* commit '34260ad79ede2ed35cc9859095b778f194b9650b':
docs: fix locale name; South Africa is local en_ZA external issue 23133
2012-01-31 08:41:03 -08:00
Scott Main
78dbcd5f1a
am 8bfeb10f: Merge "docs: fix typo in market doc external issue 22650" into ics-mr1
...
* commit '8bfeb10f98125706d8bb7afa1067ca563e741540':
docs: fix typo in market doc external issue 22650
2012-01-31 08:41:01 -08:00
Scott Main
105713549f
am 665a6693: am b86cba15: docs: fix typo in eclipse doc external issue 21475
...
* commit '665a6693f72460a0d04a5ab70c10dee5493b9df2':
docs: fix typo in eclipse doc external issue 21475
2012-01-31 08:40:59 -08:00
Scott Main
38a89182b5
am 4b2eb9a5: Merge "docs: fix typos and clarify some grammar in summary external issue 21548" into ics-mr1
...
* commit '4b2eb9a50bbead0b756944ebffd01c89916896ad':
docs: fix typos and clarify some grammar in summary external issue 21548
2012-01-31 08:40:59 -08:00
Scott Main
addfd725e7
Merge "docs: fix locale name; South Africa is local en_ZA external issue 23133" into ics-mr1
2012-01-31 08:39:36 -08:00
Scott Main
33e837a5de
Merge "docs: fix typo in market doc external issue 22650" into ics-mr1
2012-01-31 08:39:03 -08:00
Scott Main
32d086fc1e
am b86cba15: docs: fix typo in eclipse doc external issue 21475
...
* commit 'b86cba156c78740793d94444e01d17ef21cb53cc':
docs: fix typo in eclipse doc external issue 21475
2012-01-31 08:38:49 -08:00
Scott Main
0bd3b2ff51
Merge "docs: fix typos and clarify some grammar in summary external issue 21548" into ics-mr1
2012-01-31 08:37:59 -08:00
Andreas Huber
22b9ceb0b7
Merge "Make sure our aac decoder handles this parameter."
2012-01-31 08:31:03 -08:00
Wink Saville
11e744fe68
Merge "Display roaming indicator icon only based on ERI in CDMA case."
2012-01-31 06:39:52 -08:00
Ben Murdoch
3c35624057
Merge "Remove code that quits the webcore watchdog thread."
2012-01-31 02:17:12 -08:00
Mathias Agopian
fb87e54a9a
fix a race condition in eglMakeCurrent()
...
it would happen when a context was made non-current, in this
case we would call the implementation's eglMakeCurrent() which
would succeed, if we're rescheduled at that point, another
eglMakeCurrent() could make that context current to another thread,
however, when we came back to the original call we would
overwrite egl_context_t internal state.
this is fixed by moving the critical section under
egl_display_t's lock.
Change-Id: I743c85696e13263d3a9570824940263df0caacdc
2012-01-30 18:20:52 -08:00
Mathias Agopian
0d6aa287d1
Merge "add all needed GL extension wrappers"
2012-01-30 17:44:09 -08:00
Romain Guy
54d534d1d9
Merge "Add debug markers to OpenGLRenderer"
2012-01-30 17:43:37 -08:00
Mathias Agopian
a6d86e5ea7
add all needed GL extension wrappers
...
when increasing MAX_NUMBER_OF_GL_EXTENSIONS to 256
we also needed to create all the corresponding wrappers.
Change-Id: I90edaaf0885ccdfab48e7a1396bcf88e039cfb25
2012-01-30 17:40:29 -08:00
Gilles Debunne
de8f7d0dcc
Merge "Removed SoftInputShownOnFocus methods in TextView"
2012-01-30 17:01:19 -08:00
Svetoslav Ganov
9dbcc3157d
Merge "Incorrect behavior of View clear focus."
2012-01-30 16:37:33 -08:00
Scott Main
91da1b9796
am 6e4f886d: am b2d37b39: Merge "docs: update sidenav to use <span> instead of <h2> for headings, under suspicion that the h2s are causing poor snippet extraction in search results" into ics-mr1
...
* commit '6e4f886db034b954a305611cc71a10ff7d1c75ae':
docs: update sidenav to use <span> instead of <h2> for headings, under suspicion that the h2s are causing poor snippet extraction in search results
2012-01-30 16:18:54 -08:00
Scott Main
135c935a47
am b2d37b39: Merge "docs: update sidenav to use <span> instead of <h2> for headings, under suspicion that the h2s are causing poor snippet extraction in search results" into ics-mr1
...
* commit 'b2d37b39a1bb48d9f9c5b45255c5df769b85d6ae':
docs: update sidenav to use <span> instead of <h2> for headings, under suspicion that the h2s are causing poor snippet extraction in search results
2012-01-30 16:15:29 -08:00
Scott Main
0aa8f39a3d
Merge "docs: update sidenav to use <span> instead of <h2> for headings, under suspicion that the h2s are causing poor snippet extraction in search results" into ics-mr1
2012-01-30 16:13:28 -08:00
Scott Main
5d10c6015c
am a76ddf92: am 6507df8b: docs: add meta descriptions for home and sdk also revise the G+ widget to make fit
...
* commit 'a76ddf927278ec36f5a4589dbba85bb06bb1ae19':
docs: add meta descriptions for home and sdk also revise the G+ widget to make fit
2012-01-30 15:28:36 -08:00
Mathias Agopian
590f9e20ea
Merge "SF now synchronizes to VSYNC"
2012-01-30 15:24:46 -08:00
Eric Fischer
a70c6e98aa
Merge "Import translations. DO NOT MERGE"
2012-01-30 15:24:41 -08:00
Mathias Agopian
9e2464c4b9
Merge "add support for GL_EXT_debug_marker"
2012-01-30 15:23:47 -08:00
Mathias Agopian
8aedd4737d
SF now synchronizes to VSYNC
...
Change-Id: Ic5e4f2ea9927ce133eef9499c03161325e9d02c5
2012-01-30 15:21:23 -08:00
Scott Main
79bc3654c3
am 6507df8b: docs: add meta descriptions for home and sdk also revise the G+ widget to make fit
...
* commit '6507df8b78d80403d66d321748ad47290a611e3f':
docs: add meta descriptions for home and sdk also revise the G+ widget to make fit
2012-01-30 15:14:53 -08:00
Romain Guy
63cfc1d2ad
Merge "Always initialize AsyncTask on the main thread."
2012-01-30 14:12:37 -08:00
The Android Open Source Project
81523a063c
am 827a597d: Reconcile with ics-mr1-release
...
* commit '827a597df70a51c6cccad52fae2be2c469f58b77':
Revert "Fix 5797764: Increase lock screen's thread priority"
DO NOT MERGE Revert "AudioFlinger: mix track only when really ready (2)"
2012-01-30 13:38:52 -08:00
The Android Open Source Project
de973467d4
Reconcile with ics-mr1-release
...
Change-Id: Ic6454a4b7929bbf2f453022fd8ae596e215657c2
2012-01-30 13:36:34 -08:00
The Android Automerger
14ccfc4a72
merge in ics-mr1-release history after reset to ics-mr1
2012-01-30 13:23:32 -08:00
Gilles Debunne
5cfb7bcdb3
Merge "Remove onPreDrawListeners earlier in TextView"
2012-01-30 12:58:53 -08:00
Dianne Hackborn
cfc91b1b1a
am 25fe8ef1: am e22f4748: Merge "Update documentation to reflect the old approach not working." into ics-mr1
...
* commit '25fe8ef1b51b4a36e08b3fea35c0799f3d0840e2':
Update documentation to reflect the old approach not working.
2012-01-30 12:56:42 -08:00
Dianne Hackborn
128fe3141e
am e22f4748: Merge "Update documentation to reflect the old approach not working." into ics-mr1
...
* commit 'e22f4748565915948c8af2961ac74fe81a417e3b':
Update documentation to reflect the old approach not working.
2012-01-30 12:54:02 -08:00
Dianne Hackborn
2e6f082987
Merge "Update documentation to reflect the old approach not working." into ics-mr1
2012-01-30 12:52:11 -08:00
Andreas Huber
541bf88d67
Merge "Instantiate software codecs locally whenever possible."
2012-01-30 12:32:58 -08:00
Stephen Hines
8022e5d428
Merge "Fix potential bug with reordered size/offset arguments."
2012-01-30 12:22:10 -08:00
Romain Guy
2971a440a6
Merge "Add stencil buffer to the EGL config"
2012-01-30 12:05:28 -08:00