blob: 86ff2eb2061054343636e4a82d209555114f7f44 [file] [log] [blame]
// Copyright 2018 The Chromium 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 UI_GFX_LINUX_DRM_UTIL_LINUX_H_
#define UI_GFX_LINUX_DRM_UTIL_LINUX_H_
#include "ui/gfx/buffer_types.h"
namespace ui {
int GetFourCCFormatFromBufferFormat(gfx::BufferFormat format);
gfx::BufferFormat GetBufferFormatFromFourCCFormat(int format);
// Returns true if the fourcc format is known.
bool IsValidBufferFormat(uint32_t current_format);
} // namespace ui
#endif // UI_GFX_LINUX_DRM_UTIL_LINUX_H__