2021-01-27 12:53:46 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2021-08-11 15:42:57 +00:00
|
|
|
#include "include/core/SkSpan.h"
|
2021-03-04 19:30:25 +00:00
|
|
|
#include "include/private/SkSLModifiers.h"
|
2021-05-10 20:17:22 +00:00
|
|
|
#include "include/sksl/DSLLayout.h"
|
2021-02-11 20:18:31 +00:00
|
|
|
|
2021-01-27 12:53:46 +00:00
|
|
|
namespace SkSL {
|
|
|
|
|
|
|
|
namespace dsl {
|
|
|
|
|
2021-02-11 20:18:31 +00:00
|
|
|
class DSLField;
|
|
|
|
class DSLType;
|
|
|
|
|
2021-01-27 12:53:46 +00:00
|
|
|
enum Modifier {
|
2021-10-01 18:21:09 +00:00
|
|
|
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,
|
2021-01-27 12:53:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DSLModifiers {
|
|
|
|
public:
|
2022-03-23 19:43:38 +00:00
|
|
|
DSLModifiers(int flags = 0, Position pos = Position::Capture())
|
|
|
|
: DSLModifiers(DSLLayout(), flags, pos) {}
|
2021-01-27 12:53:46 +00:00
|
|
|
|
2022-03-23 19:43:38 +00:00
|
|
|
DSLModifiers(DSLLayout layout, int flags = 0, Position pos = Position::Capture())
|
|
|
|
: fModifiers(layout.fSkSLLayout, flags)
|
|
|
|
, fPosition(pos) {}
|
2021-01-27 12:53:46 +00:00
|
|
|
|
2021-05-06 14:47:06 +00:00
|
|
|
int flags() const {
|
|
|
|
return fModifiers.fFlags;
|
|
|
|
}
|
|
|
|
|
2021-07-20 19:23:04 +00:00
|
|
|
DSLLayout layout() const {
|
|
|
|
return DSLLayout(fModifiers.fLayout);
|
|
|
|
}
|
|
|
|
|
2021-01-27 12:53:46 +00:00
|
|
|
private:
|
|
|
|
SkSL::Modifiers fModifiers;
|
2022-03-23 19:43:38 +00:00
|
|
|
Position fPosition;
|
2021-01-27 12:53:46 +00:00
|
|
|
|
2022-03-09 15:22:44 +00:00
|
|
|
friend DSLType Struct(std::string_view name, SkSpan<DSLField> fields, Position pos);
|
2021-07-20 19:23:04 +00:00
|
|
|
friend class DSLCore;
|
2021-04-16 18:54:43 +00:00
|
|
|
friend class DSLFunction;
|
2021-08-05 14:15:16 +00:00
|
|
|
friend class DSLType;
|
Broke DSLVar into separate subclasses
Previously, DSLVar represented local, global, and parameter variables.
This splits it into three separate subclasses.
In addition to just being a cleaner API in general, this also addresses
an issue we ran into with the upcoming DSLParser: previously, a global
DSLVar's storage was not set correctly until DeclareGlobal was called,
so an AddToSymbolTable call prior to DeclareGlobal would create the
SkSL variable with the wrong storage, causing spurious errors on
global-only modifiers. But holding off on the AddToSymbolTable tends to
break constructs like "int x = 0, y = x", so improving the API seemed
like the best way to address it.
Now that we have greater type safety around variables, we can
potentially avoid having to call AddToSymbolTable for DSLVar and
DSLGlobalVar altogether, since we know they are both supposed to end up
in the symbol table, but that isn't something I want to change in this
CL.
Change-Id: I5f390a7384ce0af6a2131d84f97fc5e5b318063f
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/428576
Reviewed-by: Brian Osman <brianosman@google.com>
Commit-Queue: Ethan Nicholas <ethannicholas@google.com>
2021-07-15 14:35:54 +00:00
|
|
|
friend class DSLVarBase;
|
2021-03-25 21:49:08 +00:00
|
|
|
friend class DSLWriter;
|
2021-01-27 12:53:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dsl
|
|
|
|
|
|
|
|
} // namespace SkSL
|
|
|
|
|
|
|
|
#endif
|