diff options
| author | 2021-04-22 15:50:56 +0000 | |
|---|---|---|
| committer | 2021-04-22 15:50:56 +0000 | |
| commit | a8d3d0e59ead4055b69ccedce7ee441ef8c5617c (patch) | |
| tree | 4a1b3b966655c3b1855157f7fb80fb698a95a1fa /libs/gui/SurfaceComposerClient.cpp | |
| parent | 743ffdbcf19c1e518d147d46afa04a8b09bc7f26 (diff) | |
| parent | 5b5b915b5d1171772c57b38f418fa6f2f757f24f (diff) | |
Merge "Fix cursor event would be dropped" into sc-dev
Diffstat (limited to 'libs/gui/SurfaceComposerClient.cpp')
| -rw-r--r-- | libs/gui/SurfaceComposerClient.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/gui/SurfaceComposerClient.cpp b/libs/gui/SurfaceComposerClient.cpp index 83124cf0cd..5db0eae416 100644 --- a/libs/gui/SurfaceComposerClient.cpp +++ b/libs/gui/SurfaceComposerClient.cpp @@ -1840,7 +1840,8 @@ status_t SurfaceComposerClient::createSurfaceChecked(const String8& name, uint32 } ALOGE_IF(err, "SurfaceComposerClient::createSurface error %s", strerror(-err)); if (err == NO_ERROR) { - *outSurface = new SurfaceControl(this, handle, gbp, id, w, h, format, transformHint); + *outSurface = + new SurfaceControl(this, handle, gbp, id, w, h, format, transformHint, flags); } } return err; |