c23386ca39
This was only used in the context of sk_SampleMask, which was removed recently. Change-Id: Id70d7af8b3a100ff157c2984bad4131f1b92f317 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/410056 Reviewed-by: John Stiles <johnstiles@google.com> Commit-Queue: Brian Osman <brianosman@google.com>
89 lines
2.9 KiB
C++
89 lines
2.9 KiB
C++
/*
|
|
* Copyright 2021 Google LLC.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SKSL_DSL_LAYOUT
|
|
#define SKSL_DSL_LAYOUT
|
|
|
|
#include "include/sksl/DSLLayout.h"
|
|
|
|
#include "include/private/SkSLLayout.h"
|
|
#include "include/sksl/DSLErrorHandling.h"
|
|
|
|
namespace SkSL {
|
|
|
|
namespace dsl {
|
|
|
|
class DSLLayout {
|
|
public:
|
|
DSLLayout& originUpperLeft(PositionInfo pos = PositionInfo()) {
|
|
return this->flag(SkSL::Layout::kOriginUpperLeft_Flag, "origin_upper_left", pos);
|
|
}
|
|
|
|
DSLLayout& pushConstant(PositionInfo pos = PositionInfo()) {
|
|
return this->flag(SkSL::Layout::kPushConstant_Flag, "push_constant", pos);
|
|
}
|
|
|
|
DSLLayout& blendSupportAllEquations(PositionInfo pos = PositionInfo()) {
|
|
return this->flag(SkSL::Layout::kBlendSupportAllEquations_Flag,
|
|
"blend_support_all_equations", pos);
|
|
}
|
|
|
|
DSLLayout& srgbUnpremul(PositionInfo pos = PositionInfo()) {
|
|
return this->flag(SkSL::Layout::kSRGBUnpremul_Flag, "srgb_unpremul", pos);
|
|
}
|
|
|
|
DSLLayout& location(int location, PositionInfo pos = PositionInfo()) {
|
|
return this->intValue(&fSkSLLayout.fLocation, location, SkSL::Layout::kLocation_Flag,
|
|
"location", pos);
|
|
}
|
|
|
|
DSLLayout& offset(int offset, PositionInfo pos = PositionInfo()) {
|
|
return this->intValue(&fSkSLLayout.fOffset, offset, SkSL::Layout::kOffset_Flag, "offset",
|
|
pos);
|
|
}
|
|
|
|
DSLLayout& binding(int binding, PositionInfo pos = PositionInfo()) {
|
|
return this->intValue(&fSkSLLayout.fBinding, binding, SkSL::Layout::kBinding_Flag,
|
|
"binding", pos);
|
|
}
|
|
|
|
DSLLayout& index(int index, PositionInfo pos = PositionInfo()) {
|
|
return this->intValue(&fSkSLLayout.fIndex, index, SkSL::Layout::kIndex_Flag, "index", pos);
|
|
}
|
|
|
|
DSLLayout& set(int set, PositionInfo pos = PositionInfo()) {
|
|
return this->intValue(&fSkSLLayout.fSet, set, SkSL::Layout::kSet_Flag, "set", pos);
|
|
}
|
|
|
|
DSLLayout& builtin(int builtin, PositionInfo pos = PositionInfo()) {
|
|
return this->intValue(&fSkSLLayout.fBuiltin, builtin, SkSL::Layout::kBuiltin_Flag,
|
|
"builtin", pos);
|
|
}
|
|
|
|
DSLLayout& inputAttachmentIndex(int inputAttachmentIndex, PositionInfo pos = PositionInfo()) {
|
|
return this->intValue(&fSkSLLayout.fInputAttachmentIndex, inputAttachmentIndex,
|
|
SkSL::Layout::kInputAttachmentIndex_Flag, "input_attachment_index",
|
|
pos);
|
|
}
|
|
|
|
private:
|
|
DSLLayout& flag(SkSL::Layout::Flag mask, const char* name, PositionInfo pos);
|
|
|
|
DSLLayout& intValue(int* target, int value, SkSL::Layout::Flag flag, const char* name,
|
|
PositionInfo pos);
|
|
|
|
SkSL::Layout fSkSLLayout;
|
|
|
|
friend class DSLModifiers;
|
|
};
|
|
|
|
} // namespace dsl
|
|
|
|
} // namespace SkSL
|
|
|
|
#endif
|