Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/NOD_geometry_nodes_eval_log.hh
| Show First 20 Lines • Show All 61 Lines • ▼ Show 20 Lines | public: | ||||
| { | { | ||||
| return data_; | return data_; | ||||
| } | } | ||||
| }; | }; | ||||
| class GFieldValueLog : public ValueLog { | class GFieldValueLog : public ValueLog { | ||||
| private: | private: | ||||
| fn::GField field_; | fn::GField field_; | ||||
| const fn::CPPType &type_; | const CPPType &type_; | ||||
| Vector<std::string> input_tooltips_; | Vector<std::string> input_tooltips_; | ||||
| public: | public: | ||||
| GFieldValueLog(fn::GField field, bool log_full_field); | GFieldValueLog(fn::GField field, bool log_full_field); | ||||
| const fn::GField &field() const | const fn::GField &field() const | ||||
| { | { | ||||
| return field_; | return field_; | ||||
| } | } | ||||
| Span<std::string> input_tooltips() const | Span<std::string> input_tooltips() const | ||||
| { | { | ||||
| return input_tooltips_; | return input_tooltips_; | ||||
| } | } | ||||
| const fn::CPPType &type() const | const CPPType &type() const | ||||
| { | { | ||||
| return type_; | return type_; | ||||
| } | } | ||||
| }; | }; | ||||
| struct GeometryAttributeInfo { | struct GeometryAttributeInfo { | ||||
| std::string name; | std::string name; | ||||
| AttributeDomain domain; | AttributeDomain domain; | ||||
| ▲ Show 20 Lines • Show All 285 Lines • Show Last 20 Lines | |||||