skia2/src/sksl/ir/SkSLSymbol.h
Ethan Nicholas 91164d1c01 added external value support to SkSL interpreter
Bug: skia:
Change-Id: I1806e1f6abaef322ecd3ba0d9bfaa9d7ca7a44c1
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/212983
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2019-05-15 20:05:45 +00:00

44 lines
742 B
C++

/*
* 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_SYMBOL
#define SKSL_SYMBOL
#include "src/sksl/ir/SkSLIRNode.h"
namespace SkSL {
/**
* Represents a symboltable entry.
*/
struct Symbol : public IRNode {
enum Kind {
kFunctionDeclaration_Kind,
kUnresolvedFunction_Kind,
kType_Kind,
kVariable_Kind,
kField_Kind,
kExternal_Kind
};
Symbol(int offset, Kind kind, StringFragment name)
: INHERITED(offset)
, fKind(kind)
, fName(name) {}
virtual ~Symbol() {}
Kind fKind;
StringFragment fName;
typedef IRNode INHERITED;
};
} // namespace
#endif