blob: 5cd7d2e82211eef6a4588799aa01863419f283ec [file] [log] [blame]
// Copyright 2018 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 GARNET_LIB_UI_YUV_YUV_H_
#define GARNET_LIB_UI_YUV_YUV_H_
#include <stdint.h>
namespace yuv {
void YuvToBgra(uint8_t y_raw, uint8_t u_raw, uint8_t v_raw, uint8_t* bgra);
} // namespace yuv
#endif // GARNET_LIB_UI_YUV_YUV_H_