blob: ce1798c6da317dda0a6273dea1c4b31898dca005 [file] [log] [blame]
// Copyright 2016 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_UI_LIB_ESCHER_MATERIAL_COLOR_UTILS_H_
#define SRC_UI_LIB_ESCHER_MATERIAL_COLOR_UTILS_H_
#include "src/ui/lib/escher/geometry/types.h"
using escher::vec3;
namespace escher {
vec3 LinearToSrgb(vec3 linear_color);
vec3 SrgbToLinear(vec3 srgb_color);
vec3 HsvToLinear(vec3 hsv_color);
} // namespace escher
#endif // SRC_UI_LIB_ESCHER_MATERIAL_COLOR_UTILS_H_