diff options
author | 2015-08-07 14:47:20 -0700 | |
---|---|---|
committer | 2015-08-24 10:50:52 -0700 | |
commit | 60d6922a011fe18c111b8d30fb6ef1f655b6b15e (patch) | |
tree | 4618ad5fc60b4e25c76c9f5d1e80ad3223baff31 /libs/gui/ISurfaceComposer.cpp | |
parent | 72f314a50f34de593686661b0a99906125d18bfd (diff) |
libsgui: Change Rect default constructor
The current Rect default constructor initializes to all zeroes. Change
it to initialize to an invalid Rect.
Modify all of the existing invocations of the default constructor to
maintain the existing behavior.
Bug 18173359
Change-Id: Ibbad076f1550a94f56d7b1cf5350071f2022e09a
Diffstat (limited to 'libs/gui/ISurfaceComposer.cpp')
-rw-r--r-- | libs/gui/ISurfaceComposer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/ISurfaceComposer.cpp b/libs/gui/ISurfaceComposer.cpp index 78886d5bb6..b4cbf84286 100644 --- a/libs/gui/ISurfaceComposer.cpp +++ b/libs/gui/ISurfaceComposer.cpp @@ -353,7 +353,7 @@ status_t BnSurfaceComposer::onTransact( sp<IBinder> display = data.readStrongBinder(); sp<IGraphicBufferProducer> producer = interface_cast<IGraphicBufferProducer>(data.readStrongBinder()); - Rect sourceCrop; + Rect sourceCrop(Rect::EMPTY_RECT); data.read(sourceCrop); uint32_t reqWidth = data.readUint32(); uint32_t reqHeight = data.readUint32(); |