aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLVarDeclarations.h
blob: 3bf1c380efec8fd7d5f9cd19290b317ce8afd027 (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
/*
 * Copyright 2016 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SKSL_VARDECLARATIONS
#define SKSL_VARDECLARATIONS

#include "SkSLExpression.h"
#include "SkSLProgramElement.h"
#include "SkSLStatement.h"
#include "SkSLVariable.h"

namespace SkSL {

/**
 * A variable declaration statement, which may consist of one or more individual variables.
 */
struct VarDeclarations : public ProgramElement {
    VarDeclarations(int offset, const Type* baseType, std::vector<Variable*> vars)
    : INHERITED(offset, kVar_Kind)
    , fBaseType(*baseType)
    , fVars(std::move(vars)) {}

    String description() const override {
        if (!fVars.size()) {
            return String();
        }
        String result = fVars[0]->fModifiers.description() +
                fBaseType.description() + " ";
        String separator;
        for (const auto& var : fVars) {
            result += separator;
            separator = ", ";
            result += var->fName;
            for (const auto& size : var->fSizes) {
                if (size) {
                    result += "[" + size->description() + "]";
                } else {
                    result += "[]";
                }
            }
            if (var->fInitialValue) {
                result += " = " + var->fInitialValue->description();
            }
        }
        return result;
    }

    const Type& fBaseType;
    std::vector<Variable*> fVars;

    typedef ProgramElement INHERITED;
};

} // namespace

#endif