885c1d3048
It was decided that being able to report positions from C++ code is not worth the cost of having all of these captures everywhere. Change-Id: I94981d9f780bd95df8b56198210c9cdd5f16239c Reviewed-on: https://skia-review.googlesource.com/c/skia/+/528366 Reviewed-by: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
/*
|
|
* Copyright 2020 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_MODIFIERS
|
|
#define SKSL_DSL_MODIFIERS
|
|
|
|
#include "include/core/SkSpan.h"
|
|
#include "include/private/SkSLModifiers.h"
|
|
#include "include/sksl/DSLLayout.h"
|
|
|
|
namespace SkSL {
|
|
|
|
namespace dsl {
|
|
|
|
class DSLField;
|
|
class DSLType;
|
|
|
|
enum Modifier {
|
|
kNo_Modifier = SkSL::Modifiers::kNo_Flag,
|
|
kConst_Modifier = SkSL::Modifiers::kConst_Flag,
|
|
kIn_Modifier = SkSL::Modifiers::kIn_Flag,
|
|
kOut_Modifier = SkSL::Modifiers::kOut_Flag,
|
|
kInOut_Modifier = SkSL::Modifiers::kIn_Flag | SkSL::Modifiers::kOut_Flag,
|
|
kUniform_Modifier = SkSL::Modifiers::kUniform_Flag,
|
|
kFlat_Modifier = SkSL::Modifiers::kFlat_Flag,
|
|
kNoPerspective_Modifier = SkSL::Modifiers::kNoPerspective_Flag,
|
|
};
|
|
|
|
class DSLModifiers {
|
|
public:
|
|
DSLModifiers(int flags = 0, Position pos = {})
|
|
: DSLModifiers(DSLLayout(), flags, pos) {}
|
|
|
|
DSLModifiers(DSLLayout layout, int flags = 0, Position pos = {})
|
|
: fModifiers(layout.fSkSLLayout, flags)
|
|
, fPosition(pos) {}
|
|
|
|
int flags() const {
|
|
return fModifiers.fFlags;
|
|
}
|
|
|
|
DSLLayout layout() const {
|
|
return DSLLayout(fModifiers.fLayout);
|
|
}
|
|
|
|
private:
|
|
SkSL::Modifiers fModifiers;
|
|
Position fPosition;
|
|
|
|
friend DSLType Struct(std::string_view name, SkSpan<DSLField> fields, Position pos);
|
|
friend class DSLCore;
|
|
friend class DSLFunction;
|
|
friend class DSLType;
|
|
friend class DSLVarBase;
|
|
friend class DSLWriter;
|
|
};
|
|
|
|
} // namespace dsl
|
|
|
|
} // namespace SkSL
|
|
|
|
#endif
|