blob: fb5c750571713edaa81b33f3c64152e1dc967fd9 [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,
27 bool stickySet, const std::string& name, int32_t overrideScalingMode,
28 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;
38 const int32_t mOverrideScalingMode;
39 const bool mTransformToDisplayInverse;
40};
41
42} // namespace android