blob: 87a8210a83f4c261350676797db240e75cdb15c9 (
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
|
/*
* Copyright 2018 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SKSL_APPENDSTAGE
#define SKSL_APPENDSTAGE
#ifndef SKSL_STANDALONE
#include "SkRasterPipeline.h"
#include "SkSLContext.h"
#include "SkSLExpression.h"
namespace SkSL {
struct AppendStage : public Expression {
AppendStage(const Context& context, int offset, SkRasterPipeline::StockStage stage,
std::vector<std::unique_ptr<Expression>> arguments)
: INHERITED(offset, kAppendStage_Kind, *context.fVoid_Type)
, fStage(stage)
, fArguments(std::move(arguments)) {}
String description() const {
String result = "append(";
const char* separator = "";
for (const auto& a : fArguments) {
result += separator;
result += a->description();
separator = ", ";
}
result += ")";
return result;
}
bool hasSideEffects() const {
return true;
}
SkRasterPipeline::StockStage fStage;
std::vector<std::unique_ptr<Expression>> fArguments;
typedef Expression INHERITED;
};
} // namespace
#endif // SKSL_STANDALONE
#endif // SKSL_APPENDSTAGE
|