blob: e53e1c1d899431a337dda45435ce1c5cb85d5836 [file] [log] [blame]
Marissa Wall61c58622018-07-18 10:12:20 -07001/*
2 * Copyright (C) 2018 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
17#pragma once
18
Vishnu Naira72f6c02022-07-01 05:33:08 +000019#include "Layer.h"
Vishnu Naira72f6c02022-07-01 05:33:08 +000020
Marissa Wall61c58622018-07-18 10:12:20 -070021namespace android {
22
Vishnu Naira72f6c02022-07-01 05:33:08 +000023class BufferStateLayer : public Layer {
Marissa Wall61c58622018-07-18 10:12:20 -070024public:
Patrick Williamsbb25f802022-08-30 23:02:34 +000025 explicit BufferStateLayer(const LayerCreationArgs& args) : Layer(args){};
Marissa Wall61c58622018-07-18 10:12:20 -070026};
27
28} // namespace android