blob: f4d7ee93bf77d7b8585faa1ce8bf98c337e2590d [file] [log] [blame]
Scott Randolph5c99d852016-11-15 17:01:23 -08001/*
2 * Copyright (C) 2016 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#ifndef ANDROID_HARDWARE_EVS_V1_0_EVSDISPLAY_H
18#define ANDROID_HARDWARE_EVS_V1_0_EVSDISPLAY_H
19
20#include <android/hardware/evs/1.0/IEvsDisplay.h>
21#include <ui/GraphicBuffer.h>
22
23namespace android {
24namespace hardware {
25namespace evs {
26namespace V1_0 {
27namespace implementation {
28
29class EvsDisplay : public IEvsDisplay {
30public:
31 // Methods from ::android::hardware::evs::V1_0::IEvsDisplay follow.
32 Return<void> getDisplayInfo(getDisplayInfo_cb _hidl_cb) override;
33 Return<EvsResult> setDisplayState(DisplayState state) override;
34 Return<DisplayState> getDisplayState() override;
35 Return<void> getTargetBuffer(getTargetBuffer_cb _hidl_cb) override;
Scott Randolphdb5a5982017-01-23 12:35:05 -080036 Return<EvsResult> returnTargetBufferForDisplay(const BufferDesc& buffer) override;
Scott Randolph5c99d852016-11-15 17:01:23 -080037
38 // Implementation details
39 EvsDisplay();
40 virtual ~EvsDisplay() override;
41
42private:
43 DisplayDesc mInfo = {};
Scott Randolphdb5a5982017-01-23 12:35:05 -080044 BufferDesc mBuffer = {}; // A graphics buffer into which we'll store images
Scott Randolph5c99d852016-11-15 17:01:23 -080045
Scott Randolphdb5a5982017-01-23 12:35:05 -080046 bool mFrameBusy = false; // A flag telling us our buffer is in use
Scott Randolph5c99d852016-11-15 17:01:23 -080047 DisplayState mRequestedState = DisplayState::NOT_VISIBLE;
48
49 std::mutex mAccessLock;
50};
51
52} // namespace implementation
53} // namespace V1_0
54} // namespace evs
55} // namespace hardware
56} // namespace android
57
58#endif // ANDROID_HARDWARE_EVS_V1_0_EVSDISPLAY_H