blob: 68379048ec6ada08620bd6947b32ae96e4f83d7e [file] [log] [blame]
/*
* 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_EXTENSION
#define SKSL_EXTENSION
#include "src/sksl/ir/SkSLProgramElement.h"
namespace SkSL {
/**
* An extension declaration.
*/
struct Extension : public ProgramElement {
Extension(int offset, String name)
: INHERITED(offset, kExtension_Kind)
, fName(std::move(name)) {}
std::unique_ptr<ProgramElement> clone() const override {
return std::unique_ptr<ProgramElement>(new Extension(fOffset, fName));
}
#ifdef SK_DEBUG
String description() const override {
return "#extension " + fName + " : enable";
}
#endif
const String fName;
typedef ProgramElement INHERITED;
};
} // namespace
#endif