aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkColorSpace_A2B.cpp
blob: 1fef71a6178e16af51592f2daab3e6ad25a2485e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "SkColorSpace_A2B.h"

SkColorSpace_A2B::SkColorSpace_A2B(InputColorFormat inputColorFormat, std::vector<Element> elements, 
                                   PCS pcs, sk_sp<SkData> profileData)
    : INHERITED(std::move(profileData))
    , fInputColorFormat(inputColorFormat)
    , fElements(std::move(elements))
    , fPCS(pcs)
{}