Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 1 | /* |
| 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 | #include "drmcrtc.h" |
| 18 | #include "drmencoder.h" |
| 19 | #include "drmresources.h" |
| 20 | |
| 21 | #include <stdint.h> |
| 22 | #include <xf86drmMode.h> |
| 23 | |
| 24 | namespace android { |
| 25 | |
| 26 | DrmEncoder::DrmEncoder(drmModeEncoderPtr e, DrmCrtc *current_crtc, |
| 27 | const std::vector<DrmCrtc *> &possible_crtcs) |
| 28 | : id_(e->encoder_id), |
| 29 | crtc_(current_crtc), |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 30 | possible_crtcs_(possible_crtcs) { |
| 31 | } |
| 32 | |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 33 | uint32_t DrmEncoder::id() const { |
| 34 | return id_; |
| 35 | } |
| 36 | |
| 37 | DrmCrtc *DrmEncoder::crtc() const { |
| 38 | return crtc_; |
| 39 | } |
| 40 | |
| 41 | void DrmEncoder::set_crtc(DrmCrtc *crtc) { |
| 42 | crtc_ = crtc; |
| 43 | } |
Sean Paul | 6a55e9f | 2015-04-30 15:31:06 -0400 | [diff] [blame] | 44 | } |