blob: 2fc494dde9813f4911b6316a75d8bfd1c00c18b8 [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 {
static constexpr Kind kProgramElementKind = Kind::kExtension;
Extension(int offset, String name)
: INHERITED(offset, kProgramElementKind, name) {}
const String& name() const {
return this->stringData();
}
std::unique_ptr<ProgramElement> clone() const override {
return std::unique_ptr<ProgramElement>(new Extension(fOffset, this->name()));
}
String description() const override {
return "#extension " + this->name() + " : enable";
}
using INHERITED = ProgramElement;
};
} // namespace SkSL
#endif