| Fabien Sanglard | 7b1563a | 2016-10-13 12:05:28 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2007 The Android Open Source Project | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
| Dominik Laskowski | 87a07e4 | 2019-10-10 20:38:02 -0700 | [diff] [blame] | 17 | #pragma once | 
| Fabien Sanglard | 7b1563a | 2016-10-13 12:05:28 -0700 | [diff] [blame] | 18 |  | 
|  | 19 | #include "Layer.h" | 
| Chia-I Wu | 0cb75ac | 2017-11-27 15:56:04 -0800 | [diff] [blame] | 20 | #include "BufferLayerConsumer.h" | 
| Fabien Sanglard | 7b1563a | 2016-10-13 12:05:28 -0700 | [diff] [blame] | 21 |  | 
|  | 22 | namespace android { | 
| Fabien Sanglard | 7b1563a | 2016-10-13 12:05:28 -0700 | [diff] [blame] | 23 |  | 
| Dominik Laskowski | 87a07e4 | 2019-10-10 20:38:02 -0700 | [diff] [blame] | 24 | class LayerRejecter : public BufferLayerConsumer::BufferRejecter { | 
|  | 25 | public: | 
|  | 26 | LayerRejecter(Layer::State& front, Layer::State& current, bool& recomputeVisibleRegions, | 
| Robert Carr | 916b036 | 2020-10-06 13:53:03 -0700 | [diff] [blame] | 27 | bool stickySet, const std::string& name, | 
| Dominik Laskowski | 87a07e4 | 2019-10-10 20:38:02 -0700 | [diff] [blame] | 28 | bool transformToDisplayInverse); | 
| Fabien Sanglard | 7b1563a | 2016-10-13 12:05:28 -0700 | [diff] [blame] | 29 |  | 
| Dominik Laskowski | 87a07e4 | 2019-10-10 20:38:02 -0700 | [diff] [blame] | 30 | virtual bool reject(const sp<GraphicBuffer>&, const BufferItem&); | 
| Fabien Sanglard | 7b1563a | 2016-10-13 12:05:28 -0700 | [diff] [blame] | 31 |  | 
| Dominik Laskowski | 87a07e4 | 2019-10-10 20:38:02 -0700 | [diff] [blame] | 32 | private: | 
|  | 33 | Layer::State& mFront; | 
|  | 34 | Layer::State& mCurrent; | 
|  | 35 | bool& mRecomputeVisibleRegions; | 
|  | 36 | const bool mStickyTransformSet; | 
|  | 37 | const std::string& mName; | 
| Dominik Laskowski | 87a07e4 | 2019-10-10 20:38:02 -0700 | [diff] [blame] | 38 | const bool mTransformToDisplayInverse; | 
|  | 39 | }; | 
|  | 40 |  | 
|  | 41 | } // namespace android |