blob: cf4ec653faf9c7f464f302df88fa1be722622508 [file] [log] [blame]
Sean Paul6a55e9f2015-04-30 15:31:06 -04001/*
2 * Copyright (C) 2015 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_DRM_CRTC_H_
18#define ANDROID_DRM_CRTC_H_
19
20#include "drmmode.h"
21
22#include <stdint.h>
23#include <xf86drmMode.h>
24
25namespace android {
26
27class DrmCrtc {
28 public:
29 DrmCrtc(drmModeCrtcPtr c, unsigned pipe);
30 ~DrmCrtc();
31
32 uint32_t id() const;
33 unsigned pipe() const;
34
35 bool requires_modeset() const;
36 void set_requires_modeset(bool requires_modeset);
37
38 int display() const;
39 void set_display(int display);
40
41 bool can_bind(int display) const;
42
43 private:
44 DrmCrtc(const DrmCrtc &);
45
46 uint32_t id_;
47 unsigned pipe_;
48 int display_;
49
50 bool requires_modeset_;
51
52 uint32_t x_;
53 uint32_t y_;
54 uint32_t width_;
55 uint32_t height_;
56
57 DrmMode mode_;
58 bool modeValid_;
59};
60}
61
62#endif // ANDROID_DRM_CRTC_H_