diff options
| author | 2021-06-11 14:30:09 -0700 | |
|---|---|---|
| committer | 2021-06-15 11:53:29 -0700 | |
| commit | 38d2500594652eabe7ee989d40b7190a26c577cc (patch) | |
| tree | 6819769370bc9866374ef81f18b12f91cc026fa8 /services/surfaceflinger/Layer.h | |
| parent | 13a864c4702e4303b6ccb26ae0cbe573bf62e2da (diff) | |
Layer: Don't need atomic for transaction flags
Following queued transaction changes we don't need an atomic here
since setPosition etc all execute on the main thread.
Test: Existing tests pass. simpleperf
Bug: 186200583
Change-Id: I965d3883d30ce1eb3c452742535281f3e2719424
Diffstat (limited to 'services/surfaceflinger/Layer.h')
| -rw-r--r-- | services/surfaceflinger/Layer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/surfaceflinger/Layer.h b/services/surfaceflinger/Layer.h index 58731036d7..5669049512 100644 --- a/services/surfaceflinger/Layer.h +++ b/services/surfaceflinger/Layer.h @@ -960,7 +960,7 @@ protected: // these are protected by an external lock (mStateLock) State mCurrentState; - std::atomic<uint32_t> mTransactionFlags{0}; + uint32_t mTransactionFlags{0}; // Timestamp history for UIAutomation. Thread safe. FrameTracker mFrameTracker; |