blob: 4981f451d9d725da8cb7fc763b51fbdb80da974d [file] [log] [blame]
Fabien Sanglard7b1563a2016-10-13 12:05:28 -07001/*
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 Laskowski87a07e42019-10-10 20:38:02 -070017#pragma once
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070018
19#include "Layer.h"
Chia-I Wu0cb75ac2017-11-27 15:56:04 -080020#include "BufferLayerConsumer.h"
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070021
22namespace android {
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070023
Dominik Laskowski87a07e42019-10-10 20:38:02 -070024class LayerRejecter : public BufferLayerConsumer::BufferRejecter {
25public:
26 LayerRejecter(Layer::State& front, Layer::State& current, bool& recomputeVisibleRegions,
Robert Carr916b0362020-10-06 13:53:03 -070027 bool stickySet, const std::string& name,
Dominik Laskowski87a07e42019-10-10 20:38:02 -070028 bool transformToDisplayInverse);
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070029
Dominik Laskowski87a07e42019-10-10 20:38:02 -070030 virtual bool reject(const sp<GraphicBuffer>&, const BufferItem&);
Fabien Sanglard7b1563a2016-10-13 12:05:28 -070031
Dominik Laskowski87a07e42019-10-10 20:38:02 -070032private:
33 Layer::State& mFront;
34 Layer::State& mCurrent;
35 bool& mRecomputeVisibleRegions;
36 const bool mStickyTransformSet;
37 const std::string& mName;
Dominik Laskowski87a07e42019-10-10 20:38:02 -070038 const bool mTransformToDisplayInverse;
39};
40
41} // namespace android