blob: 011ce34f460960115addc94814a192aab5bbe8f8 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
#include "display-device.h"
namespace i915 {
class BootloaderDisplay : public DisplayDevice {
public:
BootloaderDisplay(Controller* controller, registers::Ddi ddi, registers::Pipe pipe);
private:
bool QueryDevice(edid::Edid* edid, zx_display_info_t* info) final;
bool DefaultModeset() final;
};
} // namespace i915