diff options
| author | 2021-07-09 19:23:53 +0000 | |
|---|---|---|
| committer | 2021-07-09 19:23:53 +0000 | |
| commit | 90b688e0871de6088a7f77f3522df440a88e676f (patch) | |
| tree | 87d39c265b324031e7de892df6b2c80ea4ada21d /libs/gui/LayerState.cpp | |
| parent | 5b20104681db36a6401f0a109e18a56909591196 (diff) | |
| parent | 6e8e36486152c3602c5ba3214f34fc01a6a13937 (diff) | |
Merge "SF: fix BufferTX counter for null buffers" into sc-dev
Diffstat (limited to 'libs/gui/LayerState.cpp')
| -rw-r--r-- | libs/gui/LayerState.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/gui/LayerState.cpp b/libs/gui/LayerState.cpp index e65c721ae1..2d99fc1903 100644 --- a/libs/gui/LayerState.cpp +++ b/libs/gui/LayerState.cpp @@ -562,6 +562,10 @@ bool layer_state_t::hasBufferChanges() const {      return (what & layer_state_t::eBufferChanged) || (what & layer_state_t::eCachedBufferChanged);  } +bool layer_state_t::hasValidBuffer() const { +    return buffer || cachedBuffer.isValid(); +} +  status_t layer_state_t::matrix22_t::write(Parcel& output) const {      SAFE_PARCEL(output.writeFloat, dsdx);      SAFE_PARCEL(output.writeFloat, dtdx);  |