blob: 2167504377c5e4c912627471e55e8786b5529293 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module skia.mojom;
// Mirror of SkColor4f
[Stable]
struct SkColor4f {
float r; //!< red component
float g; //!< green component
float b; //!< blue component
float a; //!< alpha component
};