aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLAppendStage.h
blob: 268ae979d244e89d2459695b4814e3373b98313f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 * Copyright 2018 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SKSL_APPENDSTAGE
#define SKSL_APPENDSTAGE

#ifndef SKSL_STANDALONE

#include "SkRasterPipeline.h"
#include "SkSLContext.h"
#include "SkSLExpression.h"

namespace SkSL {

struct AppendStage : public Expression {
    AppendStage(const Context& context, int offset, SkRasterPipeline::StockStage stage,
                std::vector<std::unique_ptr<Expression>> arguments)
    : INHERITED(offset, kAppendStage_Kind, *context.fVoid_Type)
    , fStage(stage)
    , fArguments(std::move(arguments)) {}

    std::unique_ptr<Expression> clone() const override {
        std::vector<std::unique_ptr<Expression>> cloned;
        for (const auto& arg : fArguments) {
            cloned.push_back(arg->clone());
        }
        return std::unique_ptr<Expression>(new AppendStage(fOffset, fStage, std::move(cloned),
                                                           &fType));
    }

    String description() const override {
        String result = "append(";
        const char* separator = "";
        for (const auto& a : fArguments) {
            result += separator;
            result += a->description();
            separator = ", ";
        }
        result += ")";
        return result;
    }

    bool hasSideEffects() const override {
        return true;
    }

    SkRasterPipeline::StockStage fStage;

    std::vector<std::unique_ptr<Expression>> fArguments;

    typedef Expression INHERITED;

private:
    AppendStage(int offset, SkRasterPipeline::StockStage stage,
                std::vector<std::unique_ptr<Expression>> arguments, const Type* type)
    : INHERITED(offset, kAppendStage_Kind, *type)
    , fStage(stage)
    , fArguments(std::move(arguments)) {}

};

} // namespace

#endif // SKSL_STANDALONE

#endif // SKSL_APPENDSTAGE