aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sksl/ir/SkSLField.h
blob: a01df2943d0d4a797bf7231b6347e31d9895e462 (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
/*
 * 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_FIELD
#define SKSL_FIELD

#include "SkSLModifiers.h"
#include "SkSLPosition.h"
#include "SkSLSymbol.h"
#include "SkSLType.h"

namespace SkSL {

/** 
 * A symbol which should be interpreted as a field access. Fields are added to the symboltable 
 * whenever a bare reference to an identifier should refer to a struct field; in GLSL, this is the 
 * result of declaring anonymous interface blocks.
 */
struct Field : public Symbol {
    Field(Position position, const Variable& owner, int fieldIndex)
    : INHERITED(position, kField_Kind, owner.fType.fields()[fieldIndex].fName)
    , fOwner(owner)
    , fFieldIndex(fieldIndex) {}

    virtual std::string description() const override {
        return fOwner.description() + "." + fOwner.fType.fields()[fFieldIndex].fName;
    }

    const Variable& fOwner;
    const int fFieldIndex;

    typedef Symbol INHERITED;
};

} // namespace SkSL

#endif