Skip to content

Commit

Permalink
fix: update inserPoint to insertPoint
Browse files Browse the repository at this point in the history
  • Loading branch information
zuiyu1998 committed Oct 10, 2024
1 parent 7bbc5fa commit 5e20595
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions native/cocos/renderer/frame-graph/PassNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
namespace cc {
namespace framegraph {

PassNode::PassNode(const PassInsertPoint inserPoint, const StringHandle name, const ID &id, Executable *pass)
PassNode::PassNode(const PassInsertPoint insertPoint, const StringHandle name, const ID &id, Executable *pass)
: _pass(pass),
_name(name),
_id(id),
_insertPoint(inserPoint) {
_insertPoint(insertPoint) {
CC_ASSERT(_name.isValid());
}

Expand Down
2 changes: 1 addition & 1 deletion native/cocos/renderer/frame-graph/PassNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class FrameGraph;

class PassNode final {
public:
PassNode(PassInsertPoint inserPoint, StringHandle name, const ID &id, Executable *pass);
PassNode(PassInsertPoint insertPoint, StringHandle name, const ID &id, Executable *pass);
~PassNode() = default;
PassNode(PassNode &&) noexcept = default;
PassNode(const PassNode &) = delete;
Expand Down

0 comments on commit 5e20595

Please sign in to comment.