blob: 25bf9903eaef2e3b0ded4851ca263af627b999c8 [file] [log] [blame]
Haoxiang Lib21a13e2019-06-18 13:16:28 -07001/*
2 * Copyright (C) 2017 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 CAR_EVS_APP_RENDERDIRECTVIEW_H
18#define CAR_EVS_APP_RENDERDIRECTVIEW_H
19
20
21#include "RenderBase.h"
22
23#include <android/hardware/automotive/evs/1.0/IEvsEnumerator.h>
24#include "ConfigManager.h"
25#include "VideoTex.h"
26
Haoxiang Lid2454a52019-06-18 13:23:12 -070027namespace android {
28namespace automotive {
29namespace evs {
30namespace support {
Haoxiang Lib21a13e2019-06-18 13:16:28 -070031
32using namespace ::android::hardware::automotive::evs::V1_0;
33
34
35/*
36 * Renders the view from a single specified camera directly to the full display.
37 */
38class RenderDirectView: public RenderBase {
39public:
Haoxiang Lib21a13e2019-06-18 13:16:28 -070040 virtual bool activate() override;
41 virtual void deactivate() override;
42
Haoxiang Li1709b372019-09-18 15:08:52 -070043 virtual bool drawFrame(const BufferDesc& tgtBuffer,
44 const BufferDesc& imageBuffer) override;
Haoxiang Lib21a13e2019-06-18 13:16:28 -070045
46protected:
Haoxiang Lib21a13e2019-06-18 13:16:28 -070047 std::unique_ptr<VideoTex> mTexture;
48
49 GLuint mShaderProgram = 0;
50};
51
Haoxiang Lid2454a52019-06-18 13:23:12 -070052} // namespace support
53} // namespace evs
54} // namespace automotive
55} // namespace android
Haoxiang Lib21a13e2019-06-18 13:16:28 -070056
57#endif //CAR_EVS_APP_RENDERDIRECTVIEW_H