OSDN Git Service

android-x86/frameworks-native.git
11 years agoam 731e0331: am e70fbe8b: am 02b95105: fix transitions from hwc to GLES composition
Mathias Agopian [Tue, 6 Nov 2012 02:19:53 +0000 (18:19 -0800)]
am 731e0331: am e70fbe8b: am 02b95105: fix transitions from hwc to GLES composition

* commit '731e0331eb402ec4564b69eaeb8b605a8b800b1b':
  fix transitions from hwc to GLES composition

11 years agoam e70fbe8b: am 02b95105: fix transitions from hwc to GLES composition
Mathias Agopian [Tue, 6 Nov 2012 02:17:18 +0000 (18:17 -0800)]
am e70fbe8b: am 02b95105: fix transitions from hwc to GLES composition

* commit 'e70fbe8b32687d9178e828d6023de599be5431c3':
  fix transitions from hwc to GLES composition

11 years agoam 02b95105: fix transitions from hwc to GLES composition
Mathias Agopian [Tue, 6 Nov 2012 02:15:56 +0000 (18:15 -0800)]
am 02b95105: fix transitions from hwc to GLES composition

* commit '02b95105754b1859a97e234b79f41489a4677c20':
  fix transitions from hwc to GLES composition

11 years agofix transitions from hwc to GLES composition
Mathias Agopian [Tue, 6 Nov 2012 01:50:57 +0000 (17:50 -0800)]
fix transitions from hwc to GLES composition

If we switched from HWC to GLES but the dirty region was empty
(could happen if the dirty region is outside of the screen for instance), we
need to force a full screen composition.

In this change we ignore the dirty region for the purpose of
rejecting the whole update and we rely on the fact that it will later
be expanded to the whole screen. This was the least risky fix.

Bug: 74677607452931
Change-Id: I2132f2f963b00a3ce7150adadb107b0367b3862e

11 years agoMerge "Change ConsumerBase's FrameAvailableListener to be a weak pointer"
Igor Murashkin [Mon, 5 Nov 2012 21:47:37 +0000 (13:47 -0800)]
Merge "Change ConsumerBase's FrameAvailableListener to be a weak pointer"

11 years agoChange ConsumerBase's FrameAvailableListener to be a weak pointer
Igor Murashkin [Mon, 29 Oct 2012 20:36:11 +0000 (13:36 -0700)]
Change ConsumerBase's FrameAvailableListener to be a weak pointer

This prevents strong reference cycles when the listener implementation also
holds a strong pointer to the ConsumerBase

Bug: 7425644
Change-Id: I1514b13a32b18d421c902dddebec0765a989c55c

11 years agoMerge "dumpstate: dump all threads in show_wchan"
Colin Cross [Sat, 3 Nov 2012 17:18:47 +0000 (10:18 -0700)]
Merge "dumpstate: dump all threads in show_wchan"

11 years agodumpstate: dump all threads in show_wchan
Colin Cross [Fri, 2 Nov 2012 22:46:56 +0000 (15:46 -0700)]
dumpstate: dump all threads in show_wchan

for_each_pid only finds processes and not their threads.  Add
for_each_tid and call it for show_wchan so we can see where all
threads are blocked in the kernel.

Change-Id: Iffb59f7c2933cecf51cdd358a36e19932c2f24c7

11 years agoAllow global transactions to nest.
Jeff Brown [Fri, 31 Aug 2012 09:18:38 +0000 (02:18 -0700)]
Allow global transactions to nest.

This change fixes a number of small glitches that can occur when
multiple components in the same process are updating surfaces.
One would expect that updates to disjoint sets of surfaces would
not collide but this is not the case.  The first component to
close the global transaction causes all pending updates to
be applied, including those that another component might not
have finished setting up if it also had an open transaction
at the same time.

Change-Id: I99345958581abbe0e1e325a5bcba37e8941a313a

11 years agoEnsure that Vector::erase() returns a valid iterator
Jason Simmons [Thu, 25 Oct 2012 22:58:43 +0000 (15:58 -0700)]
Ensure that Vector::erase() returns a valid iterator

Vector::erase may reallocate the Vector's storage while removing an element.
However, erase() calls begin() before calling removeItemsAt(), thus caching
a pointer the the Vector's old storage.  If the storage is reallocated,
the iterator returned by erase() will be based on the old storage pointer
and will thus be invalid.

Bug: 7433283

Change-Id: I91980e0fcb5a2e0a55f1a78444a5958037afdbed

11 years agoMerge "rework a bit how we scissor the display"
Mathias Agopian [Thu, 1 Nov 2012 23:32:01 +0000 (16:32 -0700)]
Merge "rework a bit how we scissor the display"

11 years agorework a bit how we scissor the display
Mathias Agopian [Wed, 31 Oct 2012 01:08:06 +0000 (18:08 -0700)]
rework a bit how we scissor the display

the scissor rect is now computed once by DisplayDevice
and is combined with the "undefined" region so that
the letter-boxed area of the screen get cleared in
drawWormhole.

Bug: 7149437
Change-Id: Id2f30516a5786f32eace7f876ff32028f954f357

11 years agoam e2d4cc28: (-s ours) Reconcile with jb-mr1-factory-release jb-mr1-release - do...
The Android Open Source Project [Wed, 31 Oct 2012 16:22:29 +0000 (09:22 -0700)]
am e2d4cc28: (-s ours) Reconcile with jb-mr1-factory-release jb-mr1-release - do not merge

* commit 'e2d4cc28d72db0d49e61ed4ceeb878436cafb23a':
  partially implement external display clipping
  Always set vertex alpha when drawing screenshot layers
  SurfaceFlinger: add animation transactions

11 years agoReconcile with jb-mr1-factory-release jb-mr1-release - do not merge
The Android Open Source Project [Wed, 31 Oct 2012 16:16:58 +0000 (09:16 -0700)]
Reconcile with jb-mr1-factory-release jb-mr1-release - do not merge

Change-Id: I4f96bf28f6585ad8331daeab60e6d23e92cf0c5d

11 years agoam 5b47c5c5: am 742801c6: am 2281af96: dumpstate: add kernel memory fragmentation...
Colin Cross [Tue, 30 Oct 2012 17:11:27 +0000 (10:11 -0700)]
am 5b47c5c5: am 742801c6: am 2281af96: dumpstate: add kernel memory fragmentation unusable index

* commit '5b47c5c574d8d3bf8e73ea4fd7a08e0d881d461c':
  dumpstate: add kernel memory fragmentation unusable index

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Tue, 30 Oct 2012 15:52:44 +0000 (08:52 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam 742801c6: am 2281af96: dumpstate: add kernel memory fragmentation unusable index
Colin Cross [Tue, 30 Oct 2012 00:10:16 +0000 (17:10 -0700)]
am 742801c6: am 2281af96: dumpstate: add kernel memory fragmentation unusable index

* commit '742801c625ecb09fbe14e717fa5d580b3957ed4a':
  dumpstate: add kernel memory fragmentation unusable index

11 years agoam 2281af96: dumpstate: add kernel memory fragmentation unusable index
Colin Cross [Tue, 30 Oct 2012 00:08:14 +0000 (17:08 -0700)]
am 2281af96: dumpstate: add kernel memory fragmentation unusable index

* commit '2281af967dd840aade7bc55b19ea7df0e6da36f2':
  dumpstate: add kernel memory fragmentation unusable index

11 years agoMerge "Add an LRU cache plus hashing primitives"
Raph Levien [Mon, 29 Oct 2012 15:59:54 +0000 (08:59 -0700)]
Merge "Add an LRU cache plus hashing primitives"

11 years agodumpstate: add kernel memory fragmentation unusable index
Colin Cross [Mon, 29 Oct 2012 05:41:06 +0000 (22:41 -0700)]
dumpstate: add kernel memory fragmentation unusable index

Dump /d/extfrag/unusable_index in bugreports.  It shows the
percentage of memory in each zone that is not available for
allocations for each order.

Change-Id: I2af6680cb609887ea7b3d6107d1aa88bd0206b52

11 years agoAdd an LRU cache plus hashing primitives
Raph Levien [Fri, 26 Oct 2012 06:11:13 +0000 (23:11 -0700)]
Add an LRU cache plus hashing primitives

This patch adds a hashtable-based LRU cache. This should be
significantly higher performance than the GenerationCache it is intended
to replace. It is a large part of the fix for bug 7271109
TextLayoutCache low-level performance issues.

We added a new method to BasicHashtable to detect when rehashing is
needed, because the internal linked list pointers would get invalidated
by that rehashing.

Also, the hash_type specialized to pointers had a small flaw.

Change-Id: I950c2083f96519777b851dbe157100e0a334caec

11 years agopartially implement external display clipping
Mathias Agopian [Wed, 24 Oct 2012 23:29:17 +0000 (16:29 -0700)]
partially implement external display clipping

we perform external display clipping only on the GL
side (ie: not done on the h/w composer side, which is
harder and would be too risky). in practice this means
that WFD will be clipped properly, while HDMI *may* or
may not depending on how hwc is used.

Bug: 7149437
Change-Id: I92d4d04220db72b6ffb134c7fa7a93af569723a5

11 years agoam 40cd4515: am 78b4977e: Merge "Ensure that Vector::erase() returns a valid iterator...
Jason Simmons [Fri, 26 Oct 2012 01:08:03 +0000 (18:08 -0700)]
am 40cd4515: am 78b4977e: Merge "Ensure that Vector::erase() returns a valid iterator" into jb-mr1-aah-dev

* commit '40cd45151513ecc02c95e0cc1b40480dd816cdd4':
  Ensure that Vector::erase() returns a valid iterator

11 years agoam 78b4977e: Merge "Ensure that Vector::erase() returns a valid iterator" into jb...
Jason Simmons [Fri, 26 Oct 2012 01:06:06 +0000 (18:06 -0700)]
am 78b4977e: Merge "Ensure that Vector::erase() returns a valid iterator" into jb-mr1-aah-dev

* commit '78b4977efd365d2ad7c9227c3a89e65ab60c3260':
  Ensure that Vector::erase() returns a valid iterator

11 years agoMerge "Ensure that Vector::erase() returns a valid iterator" into jb-mr1-aah-dev
Jason Simmons [Fri, 26 Oct 2012 01:03:50 +0000 (18:03 -0700)]
Merge "Ensure that Vector::erase() returns a valid iterator" into jb-mr1-aah-dev

11 years agoam c0384266: am f45c5100: partially implement external display clipping
Mathias Agopian [Fri, 26 Oct 2012 00:32:17 +0000 (17:32 -0700)]
am c0384266: am f45c5100: partially implement external display clipping

* commit 'c0384266699aadd23a11bcdfd8a92f6dae8bf36c':
  partially implement external display clipping

11 years agoam f45c5100: partially implement external display clipping
Mathias Agopian [Fri, 26 Oct 2012 00:29:41 +0000 (17:29 -0700)]
am f45c5100: partially implement external display clipping

* commit 'f45c510009edab4a3e93f8d66b2e30aa26759fed':
  partially implement external display clipping

11 years agoEnsure that Vector::erase() returns a valid iterator
Jason Simmons [Thu, 25 Oct 2012 22:58:43 +0000 (15:58 -0700)]
Ensure that Vector::erase() returns a valid iterator

Vector::erase may reallocate the Vector's storage while removing an element.
However, erase() calls begin() before calling removeItemsAt(), thus caching
a pointer the the Vector's old storage.  If the storage is reallocated,
the iterator returned by erase() will be based on the old storage pointer
and will thus be invalid.

Change-Id: I2450c55fd418e6b1c558a4ca7c024573abbaa098

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Thu, 25 Oct 2012 20:42:23 +0000 (13:42 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agopartially implement external display clipping
Mathias Agopian [Wed, 24 Oct 2012 23:29:17 +0000 (16:29 -0700)]
partially implement external display clipping

we perform external display clipping only on the GL
side (ie: not done on the h/w composer side, which is
harder and would be too risky). in practice this means
that WFD will be clipped properly, while HDMI *may* or
may not depending on how hwc is used.

Bug: 7149437
Change-Id: I92d4d04220db72b6ffb134c7fa7a93af569723a5

11 years agoam 296cd1cb: am 04075569: Revert "Revert "put back the unused virtuals in Vector<>""
Dave Burke [Thu, 25 Oct 2012 18:48:40 +0000 (11:48 -0700)]
am 296cd1cb: am 04075569: Revert "Revert "put back the unused virtuals in Vector<>""

* commit '296cd1cb9ac7b7ea201662860347755d0349a7de':
  Revert "Revert "put back the unused virtuals in Vector<>""

11 years agoam 04075569: Revert "Revert "put back the unused virtuals in Vector<>""
Dave Burke [Thu, 25 Oct 2012 18:45:41 +0000 (11:45 -0700)]
am 04075569: Revert "Revert "put back the unused virtuals in Vector<>""

* commit '04075569b565c949a6db8b4e8a9f10d281de4d9c':
  Revert "Revert "put back the unused virtuals in Vector<>""

11 years agoRevert "Revert "put back the unused virtuals in Vector<>""
Dave Burke [Thu, 25 Oct 2012 00:30:31 +0000 (17:30 -0700)]
Revert "Revert "put back the unused virtuals in Vector<>""

This reverts commit 225c66a48cdc3acef21ee380dc134449749d3cb3

Change-Id: If31a04b81052cbc7dd7bf237c07107c33066d03d

11 years agoMore changes to fix PDK build:
Mike Lockwood [Wed, 24 Oct 2012 19:28:57 +0000 (12:28 -0700)]
More changes to fix PDK build:

move screencap back to frameworks/base
move libdiskusage over from frameworks/base

Change-Id: I8415716634a4cb5b0fae15ef15ff21ee0a08906a

11 years agoMove app_process and system_server back to frameworks/base
Mike Lockwood [Wed, 24 Oct 2012 18:51:51 +0000 (11:51 -0700)]
Move app_process and system_server back to frameworks/base

due to dependency on libandroid_runtime

Change-Id: Ie30a76ebb57a07ab29dc1b553c0e2dc9ab8d271a
Signed-off-by: Mike Lockwood <lockwood@google.com>
11 years agoMove non-Java commands over from frameworks/base
Mike Lockwood [Wed, 24 Oct 2012 17:45:23 +0000 (10:45 -0700)]
Move non-Java commands over from frameworks/base

Change-Id: I0571813c1cfcf66abd36eb9f178fc49b618e88a6
Signed-off-by: Mike Lockwood <lockwood@google.com>
11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Mon, 22 Oct 2012 23:42:08 +0000 (16:42 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam ef36f2a8: am d17e3b5f: prevent a client from crashing surfaceflinger
Mathias Agopian [Mon, 22 Oct 2012 22:38:00 +0000 (15:38 -0700)]
am ef36f2a8: am d17e3b5f: prevent a client from crashing surfaceflinger

* commit 'ef36f2a84cb8478b0baa299d980922ce7824c0b3':
  prevent a client from crashing surfaceflinger

11 years agoam d17e3b5f: prevent a client from crashing surfaceflinger
Mathias Agopian [Mon, 22 Oct 2012 22:35:51 +0000 (15:35 -0700)]
am d17e3b5f: prevent a client from crashing surfaceflinger

* commit 'd17e3b5f6cf71eb52bc81f37719254ce08244b34':
  prevent a client from crashing surfaceflinger

11 years agoprevent a client from crashing surfaceflinger
Mathias Agopian [Mon, 22 Oct 2012 21:27:45 +0000 (14:27 -0700)]
prevent a client from crashing surfaceflinger

a misbehaving or malicious client could cause SF to crash
by providing a "fake" IInterface. we now check the
IInterface we get is our own and local.

Bug: 7278879
Change-Id: Ia19d05902d4b2385c5a16416148378d4998833fd

11 years agoam 3b6055a7: am ba7dc2db: Merge "SurfaceFlinger: add support for secure displays...
Jamie Gennis [Mon, 22 Oct 2012 20:57:51 +0000 (13:57 -0700)]
am 3b6055a7: am ba7dc2db: Merge "SurfaceFlinger: add support for secure displays" into jb-mr1-dev

* commit '3b6055a7184a2da7bbdd94118a8c6af875bb28b1':
  SurfaceFlinger: add support for secure displays

11 years agoam ba7dc2db: Merge "SurfaceFlinger: add support for secure displays" into jb-mr1-dev
Jamie Gennis [Mon, 22 Oct 2012 20:54:50 +0000 (13:54 -0700)]
am ba7dc2db: Merge "SurfaceFlinger: add support for secure displays" into jb-mr1-dev

* commit 'ba7dc2db6e93a2407c8c328f2838591b7b760658':
  SurfaceFlinger: add support for secure displays

11 years agoMerge "SurfaceFlinger: add support for secure displays" into jb-mr1-dev
Jamie Gennis [Mon, 22 Oct 2012 20:50:18 +0000 (13:50 -0700)]
Merge "SurfaceFlinger: add support for secure displays" into jb-mr1-dev

11 years agoSurfaceFlinger: add support for secure displays
Jamie Gennis [Sat, 20 Oct 2012 01:19:11 +0000 (18:19 -0700)]
SurfaceFlinger: add support for secure displays

This change adds support for displays that are not allowed to display surfaces
with the eSecure flag set.  All non-virtual displays are considered secure,
while virtual displays have their secure-ness specified at creation time.

Bug: 7368436
Change-Id: I81ad535d2d1e5a7ff78269017e85b111f0098500

11 years agoAlways set vertex alpha when drawing screenshot layers
Jesse Hall [Mon, 15 Oct 2012 19:38:33 +0000 (12:38 -0700)]
Always set vertex alpha when drawing screenshot layers

The screenshot is a GL_RGB texture, and the GL_REPLACE texture env
mode uses vertex alpha for GL_RGB textures instead of alpha=1.0.

Bug: 7340077
Change-Id: I6fbb907023e48f9c422b15a33da79757d6726840

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Sun, 21 Oct 2012 06:14:12 +0000 (23:14 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam 44c985ef: am 620685c2: Fix emulator vsync
Andy McFadden [Fri, 19 Oct 2012 23:17:41 +0000 (16:17 -0700)]
am 44c985ef: am 620685c2: Fix emulator vsync

* commit '44c985ef7d0b6d94fa9df3fd5ea718eca0ecdbd1':
  Fix emulator vsync

11 years agoam 620685c2: Fix emulator vsync
Andy McFadden [Fri, 19 Oct 2012 23:14:34 +0000 (16:14 -0700)]
am 620685c2: Fix emulator vsync

* commit '620685c2e684082c82657732d1e35cefd0c79006':
  Fix emulator vsync

11 years agoFix emulator vsync
Andy McFadden [Fri, 19 Oct 2012 19:53:46 +0000 (12:53 -0700)]
Fix emulator vsync

The code that reserves display IDs was only run when a hardware
composer was present.  The eventControl() function, which handles
enabling of vsync, was ignoring the request because the primary
display didn't appear in its set of allocated IDs.  This moves
reservation of IDs for built-in displays outside the HWC-only block.

Also, added a couple of warnings in eventControl().

Bug 7376568

Change-Id: I185ccdf817a25499b5c2668f8f6d594afb8c1568

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Fri, 19 Oct 2012 13:59:39 +0000 (06:59 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam f58475b5: am 60393d45: Merge "Add runtime debugging capabilities to OpenGL" into...
Romain Guy [Fri, 19 Oct 2012 00:39:13 +0000 (17:39 -0700)]
am f58475b5: am 60393d45: Merge "Add runtime debugging capabilities to OpenGL" into jb-mr1-dev

* commit 'f58475b5ae4ccb3a31c05c79da8b2914c62a3510':
  Add runtime debugging capabilities to OpenGL

11 years agoam 60393d45: Merge "Add runtime debugging capabilities to OpenGL" into jb-mr1-dev
Romain Guy [Fri, 19 Oct 2012 00:37:54 +0000 (17:37 -0700)]
am 60393d45: Merge "Add runtime debugging capabilities to OpenGL" into jb-mr1-dev

* commit '60393d45207b6548e1f61ca104fa59aecee87d30':
  Add runtime debugging capabilities to OpenGL

11 years agoMerge "Add runtime debugging capabilities to OpenGL" into jb-mr1-dev
Romain Guy [Fri, 19 Oct 2012 00:33:36 +0000 (17:33 -0700)]
Merge "Add runtime debugging capabilities to OpenGL" into jb-mr1-dev

11 years agoAdd runtime debugging capabilities to OpenGL
Romain Guy [Thu, 18 Oct 2012 23:16:10 +0000 (16:16 -0700)]
Add runtime debugging capabilities to OpenGL

The shell property debug.egl.trace can now be set to:

0
  disables tracing
1
  logs all GL calls
error
  checks glGetError after every GL call, logs a stack trace on error
systrace
  logs each GL call to systrace

Change-Id: I34a2a2d4e19c373fd9eaa1b0cd93e67c87378996

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Thu, 18 Oct 2012 13:59:41 +0000 (06:59 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam caadbc53: am 7c41bf70: SurfaceFlinger: change the animation timeout
Jamie Gennis [Wed, 17 Oct 2012 23:58:54 +0000 (16:58 -0700)]
am caadbc53: am 7c41bf70: SurfaceFlinger: change the animation timeout

* commit 'caadbc5324cd4503450ac6bd9bb09c3c5fcb7430':
  SurfaceFlinger: change the animation timeout

11 years agoam 7c41bf70: SurfaceFlinger: change the animation timeout
Jamie Gennis [Wed, 17 Oct 2012 23:57:01 +0000 (16:57 -0700)]
am 7c41bf70: SurfaceFlinger: change the animation timeout

* commit '7c41bf7092b75dba6029cd3bbc842d3a2661b0aa':
  SurfaceFlinger: change the animation timeout

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Wed, 17 Oct 2012 23:07:12 +0000 (16:07 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam 9097e144: am 7f79a2bd: Merge "BufferQueue: alloc without holding the lock" into...
Jamie Gennis [Wed, 17 Oct 2012 16:40:21 +0000 (09:40 -0700)]
am 9097e144: am 7f79a2bd: Merge "BufferQueue: alloc without holding the lock" into jb-mr1-dev

* commit '9097e14443767b37ab0831d46c1090a3960d36e1':
  BufferQueue: alloc without holding the lock

11 years agoSurfaceFlinger: change the animation timeout
Jamie Gennis [Wed, 17 Oct 2012 16:29:47 +0000 (09:29 -0700)]
SurfaceFlinger: change the animation timeout

This change changes the animation transaction timeout from 500us to 5s.

Bug: 7362633
Change-Id: I9bed8e74f726dae2daa398afc29babcea00d5b04

11 years agoam 7f79a2bd: Merge "BufferQueue: alloc without holding the lock" into jb-mr1-dev
Jamie Gennis [Wed, 17 Oct 2012 16:37:40 +0000 (09:37 -0700)]
am 7f79a2bd: Merge "BufferQueue: alloc without holding the lock" into jb-mr1-dev

* commit '7f79a2bd5c92bc626890dc16ffb8cd2de934e5fb':
  BufferQueue: alloc without holding the lock

11 years agoMerge "BufferQueue: alloc without holding the lock" into jb-mr1-dev
Jamie Gennis [Wed, 17 Oct 2012 16:32:42 +0000 (09:32 -0700)]
Merge "BufferQueue: alloc without holding the lock" into jb-mr1-dev

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Wed, 17 Oct 2012 00:30:45 +0000 (17:30 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam 3fe50abb: am 125becee: am 7abbbc68: Merge "Add TEMP_FAILURE_RETRY to ZipUtils"
Kenny Root [Tue, 16 Oct 2012 23:31:26 +0000 (16:31 -0700)]
am 3fe50abb: am 125becee: am 7abbbc68: Merge "Add TEMP_FAILURE_RETRY to ZipUtils"

* commit '3fe50abbfd12a8d98717bdaba2f9af30f39affbf':
  Add TEMP_FAILURE_RETRY to ZipUtils

11 years agoam 125becee: am 7abbbc68: Merge "Add TEMP_FAILURE_RETRY to ZipUtils"
Kenny Root [Tue, 16 Oct 2012 23:29:17 +0000 (16:29 -0700)]
am 125becee: am 7abbbc68: Merge "Add TEMP_FAILURE_RETRY to ZipUtils"

* commit '125beceefd44f6abd17ff336bb989e1850965bd8':
  Add TEMP_FAILURE_RETRY to ZipUtils

11 years agoam 7abbbc68: Merge "Add TEMP_FAILURE_RETRY to ZipUtils"
Kenny Root [Tue, 16 Oct 2012 23:26:42 +0000 (16:26 -0700)]
am 7abbbc68: Merge "Add TEMP_FAILURE_RETRY to ZipUtils"

* commit '7abbbc680d03dd8e50a709f89b78ace6b81154b0':
  Add TEMP_FAILURE_RETRY to ZipUtils

11 years agoMerge "Add TEMP_FAILURE_RETRY to ZipUtils"
Kenny Root [Tue, 16 Oct 2012 22:57:11 +0000 (15:57 -0700)]
Merge "Add TEMP_FAILURE_RETRY to ZipUtils"

11 years agoAdd TEMP_FAILURE_RETRY to ZipUtils
Kenny Root [Tue, 16 Oct 2012 18:34:02 +0000 (11:34 -0700)]
Add TEMP_FAILURE_RETRY to ZipUtils

Change-Id: I275c415f14eeffaf9a58d45f3ea014d766441ec3

11 years agoSurfaceFlinger: add animation transactions
Jamie Gennis [Tue, 16 Oct 2012 01:24:43 +0000 (18:24 -0700)]
SurfaceFlinger: add animation transactions

This change adds a transaction flag for WindowManager to indicate that a
transaction is being used to animate windows around the screen.  SurfaceFlinger
will not allow more than one of these transactions to be outstanding at a time
to prevent the animation "frames" from being dropped.

Bug: 7353840
Change-Id: I6488a6e0e1ed13d27356d2203c9dc766dc6b1759

11 years agoam 23bcd8d2: am 825a9a2d: Merge "Update comments to reflect what the code actually...
Romain Guy [Tue, 16 Oct 2012 16:50:35 +0000 (09:50 -0700)]
am 23bcd8d2: am 825a9a2d: Merge "Update comments to reflect what the code actually does" into jb-mr1-dev

* commit '23bcd8d298597659622919027c9ea921d5eed513':
  Update comments to reflect what the code actually does

11 years agoam 825a9a2d: Merge "Update comments to reflect what the code actually does" into...
Romain Guy [Tue, 16 Oct 2012 16:47:38 +0000 (09:47 -0700)]
am 825a9a2d: Merge "Update comments to reflect what the code actually does" into jb-mr1-dev

* commit '825a9a2dcd1b3e139dd0677ff46f966fb23f963c':
  Update comments to reflect what the code actually does

11 years agoMerge "Update comments to reflect what the code actually does" into jb-mr1-dev
Romain Guy [Tue, 16 Oct 2012 16:45:01 +0000 (09:45 -0700)]
Merge "Update comments to reflect what the code actually does" into jb-mr1-dev

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Tue, 16 Oct 2012 13:59:29 +0000 (06:59 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam 179c4db2: am db9b41fd: fix a corruption in blank/unblank
Mathias Agopian [Tue, 16 Oct 2012 03:39:30 +0000 (20:39 -0700)]
am 179c4db2: am db9b41fd: fix a corruption in blank/unblank

* commit '179c4db2c3f26e6586b0b0fe2c576fc9ae349580':
  fix a corruption in blank/unblank

11 years agoam db9b41fd: fix a corruption in blank/unblank
Mathias Agopian [Tue, 16 Oct 2012 03:38:09 +0000 (20:38 -0700)]
am db9b41fd: fix a corruption in blank/unblank

* commit 'db9b41fd157279d1b988a854e0d7c5b43c2fac38':
  fix a corruption in blank/unblank

11 years agofix a corruption in blank/unblank
Mathias Agopian [Mon, 15 Oct 2012 23:51:41 +0000 (16:51 -0700)]
fix a corruption in blank/unblank

we were holding a reference (ie: pointer) to a sp<DisplayDevice>
while processing the message. Meanwhile the object itself could
go away and we would end up accessing a dead object.

the root cause of the problem is that we are accessing mDisplays[]
in a few places outside of the main thread.

Bug: 7352770
Change-Id: I89e35dd85fb30e9a6383eca9a0bbc7028363876c

11 years agoam 5c51f0fb: am 3365c567: Merge "SurfaceFlinger: add animation transactions" into...
Jamie Gennis [Tue, 16 Oct 2012 03:26:15 +0000 (20:26 -0700)]
am 5c51f0fb: am 3365c567: Merge "SurfaceFlinger: add animation transactions" into jb-mr1-dev

* commit '5c51f0fb38bd0cd80031da3eee6f335d5d28c3fc':
  SurfaceFlinger: add animation transactions

11 years agoam 49fe8add: am b96fe085: Merge "Add new debug option to force 4x MSAA in OpenGL...
Romain Guy [Tue, 16 Oct 2012 03:26:14 +0000 (20:26 -0700)]
am 49fe8add: am b96fe085: Merge "Add new debug option to force 4x MSAA in OpenGL ES 2.0 apps" into jb-mr1-dev

* commit '49fe8addbfe52bf9a3e69e6250e462a70332235c':
  Add new debug option to force 4x MSAA in OpenGL ES 2.0 apps

11 years agoam 3365c567: Merge "SurfaceFlinger: add animation transactions" into jb-mr1-dev
Jamie Gennis [Tue, 16 Oct 2012 03:19:36 +0000 (20:19 -0700)]
am 3365c567: Merge "SurfaceFlinger: add animation transactions" into jb-mr1-dev

* commit '3365c56716432d3bfdf41bb82fb08df821f41d0c':
  SurfaceFlinger: add animation transactions

11 years agoam b96fe085: Merge "Add new debug option to force 4x MSAA in OpenGL ES 2.0 apps"...
Romain Guy [Tue, 16 Oct 2012 03:19:18 +0000 (20:19 -0700)]
am b96fe085: Merge "Add new debug option to force 4x MSAA in OpenGL ES 2.0 apps" into jb-mr1-dev

* commit 'b96fe08540dcf7e90be56919ea9863f687da779c':
  Add new debug option to force 4x MSAA in OpenGL ES 2.0 apps

11 years agoMerge "SurfaceFlinger: add animation transactions" into jb-mr1-dev
Jamie Gennis [Tue, 16 Oct 2012 02:36:11 +0000 (19:36 -0700)]
Merge "SurfaceFlinger: add animation transactions" into jb-mr1-dev

11 years agoUpdate comments to reflect what the code actually does
Romain Guy [Tue, 16 Oct 2012 02:25:18 +0000 (19:25 -0700)]
Update comments to reflect what the code actually does

Change-Id: I2613aa32c29eddc52a00090656c1bd11f9f5732b

11 years agoSurfaceFlinger: add animation transactions
Jamie Gennis [Tue, 16 Oct 2012 01:24:43 +0000 (18:24 -0700)]
SurfaceFlinger: add animation transactions

This change adds a transaction flag for WindowManager to indicate that a
transaction is being used to animate windows around the screen.  SurfaceFlinger
will not allow more than one of these transactions to be outstanding at a time
to prevent the animation "frames" from being dropped.

Bug: 7353840
Change-Id: I6488a6e0e1ed13d27356d2203c9dc766dc6b1759

11 years agoMerge "Add new debug option to force 4x MSAA in OpenGL ES 2.0 apps" into jb-mr1-dev
Romain Guy [Tue, 16 Oct 2012 01:43:19 +0000 (18:43 -0700)]
Merge "Add new debug option to force 4x MSAA in OpenGL ES 2.0 apps" into jb-mr1-dev

11 years agoAdd new debug option to force 4x MSAA in OpenGL ES 2.0 apps
Romain Guy [Tue, 16 Oct 2012 01:13:05 +0000 (18:13 -0700)]
Add new debug option to force 4x MSAA in OpenGL ES 2.0 apps

Change-Id: I53ac91a9ce07b5dd5f2ee0e3cc5b65b6402f9229

11 years agoam c558269b: am 837d2f9e: Always set vertex alpha when drawing screenshot layers
Jesse Hall [Mon, 15 Oct 2012 22:01:47 +0000 (15:01 -0700)]
am c558269b: am 837d2f9e: Always set vertex alpha when drawing screenshot layers

* commit 'c558269b1ab8c4985b86a0f39338d42f162693f2':
  Always set vertex alpha when drawing screenshot layers

11 years agoam 837d2f9e: Always set vertex alpha when drawing screenshot layers
Jesse Hall [Mon, 15 Oct 2012 21:59:16 +0000 (14:59 -0700)]
am 837d2f9e: Always set vertex alpha when drawing screenshot layers

* commit '837d2f9e83e7d8625ef482d9c9d9afa852c8dbaa':
  Always set vertex alpha when drawing screenshot layers

11 years agoAlways set vertex alpha when drawing screenshot layers
Jesse Hall [Mon, 15 Oct 2012 19:38:33 +0000 (12:38 -0700)]
Always set vertex alpha when drawing screenshot layers

The screenshot is a GL_RGB texture, and the GL_REPLACE texture env
mode uses vertex alpha for GL_RGB textures instead of alpha=1.0.

Bug: 7340077
Change-Id: I6fbb907023e48f9c422b15a33da79757d6726840

11 years agomerge in jb-mr1-factory-release history after reset to jb-mr1-dev
The Android Automerger [Mon, 15 Oct 2012 19:30:57 +0000 (12:30 -0700)]
merge in jb-mr1-factory-release history after reset to jb-mr1-dev

11 years agoam 935ba809: (-s ours) Reconcile with jb-mr1-factory-release jb-mr1-release - do...
The Android Open Source Project [Mon, 15 Oct 2012 14:42:41 +0000 (07:42 -0700)]
am 935ba809: (-s ours) Reconcile with jb-mr1-factory-release jb-mr1-release - do not merge

* commit '935ba80962920ff420bd4714046d1e4d8910889b':

11 years agoReconcile with jb-mr1-factory-release jb-mr1-release - do not merge
The Android Open Source Project [Mon, 15 Oct 2012 14:38:56 +0000 (07:38 -0700)]
Reconcile with jb-mr1-factory-release jb-mr1-release - do not merge

Change-Id: I50d7a0cbc6632c78a725810d960e049c310b3597

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Sat, 13 Oct 2012 10:50:10 +0000 (03:50 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam e2e95c8c: am 9bdaa60b: Merge "Add TEMP_FAILURE_RETRY around open and write calls...
Kenny Root [Sat, 13 Oct 2012 06:45:02 +0000 (23:45 -0700)]
am e2e95c8c: am 9bdaa60b: Merge "Add TEMP_FAILURE_RETRY around open and write calls" into jb-mr1-dev

* commit 'e2e95c8ccba2c2fb979d0ed42ed905106623d3c3':
  Add TEMP_FAILURE_RETRY around open and write calls

11 years agoam 9bdaa60b: Merge "Add TEMP_FAILURE_RETRY around open and write calls" into jb-mr1-dev
Kenny Root [Sat, 13 Oct 2012 06:43:29 +0000 (23:43 -0700)]
am 9bdaa60b: Merge "Add TEMP_FAILURE_RETRY around open and write calls" into jb-mr1-dev

* commit '9bdaa60b809b223d14619d1f13afdd38acb1738d':
  Add TEMP_FAILURE_RETRY around open and write calls

11 years agoMerge "Add TEMP_FAILURE_RETRY around open and write calls" into jb-mr1-dev
Kenny Root [Sat, 13 Oct 2012 06:39:47 +0000 (23:39 -0700)]
Merge "Add TEMP_FAILURE_RETRY around open and write calls" into jb-mr1-dev

11 years agomerge in jb-mr1-factory-release history after reset to jb-mr1-dev
The Android Automerger [Fri, 12 Oct 2012 23:34:34 +0000 (16:34 -0700)]
merge in jb-mr1-factory-release history after reset to jb-mr1-dev

11 years agomerge in jb-mr1-release history after reset to jb-mr1-dev
The Android Automerger [Fri, 12 Oct 2012 23:32:47 +0000 (16:32 -0700)]
merge in jb-mr1-release history after reset to jb-mr1-dev

11 years agoam ec93e762: am dd57d551: Merge "SurfaceFlinger: make the num FBs a board config...
Jamie Gennis [Fri, 12 Oct 2012 21:39:54 +0000 (14:39 -0700)]
am ec93e762: am dd57d551: Merge "SurfaceFlinger: make the num FBs a board config" into jb-mr1-dev

* commit 'ec93e762afc46534aadb3f583dbf87e38e85bfe9':
  SurfaceFlinger: make the num FBs a board config

11 years agoam dd57d551: Merge "SurfaceFlinger: make the num FBs a board config" into jb-mr1-dev
Jamie Gennis [Fri, 12 Oct 2012 21:37:22 +0000 (14:37 -0700)]
am dd57d551: Merge "SurfaceFlinger: make the num FBs a board config" into jb-mr1-dev

* commit 'dd57d551944c01394bc2807d962be4953c58c7c1':
  SurfaceFlinger: make the num FBs a board config

11 years agoMerge "SurfaceFlinger: make the num FBs a board config" into jb-mr1-dev
Jamie Gennis [Fri, 12 Oct 2012 21:33:51 +0000 (14:33 -0700)]
Merge "SurfaceFlinger: make the num FBs a board config" into jb-mr1-dev