blob: c576a6c1eba764e97e855ccb0dcafcb0c69082c7 [file] [log] [blame]
// Copyright 2023 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.
#ifndef SRC_GRAPHICS_DISPLAY_DRIVERS_AMLOGIC_DISPLAY_LOGGING_H_
#define SRC_GRAPHICS_DISPLAY_DRIVERS_AMLOGIC_DISPLAY_LOGGING_H_
#include "src/graphics/display/drivers/amlogic-display/panel-config.h"
#include "src/graphics/display/lib/api-types/cpp/display-timing.h"
namespace amlogic_display {
// Log contents of `display::DisplayTiming` to INFO level system log.
void LogDisplayTiming(const display::DisplayTiming& display_timing);
// Log contents of `PanelConfig` to INFO level system log.
void LogPanelConfig(const PanelConfig& panel_config);
} // namespace amlogic_display
#endif // SRC_GRAPHICS_DISPLAY_DRIVERS_AMLOGIC_DISPLAY_LOGGING_H_