Skip to content

Commit

Permalink
vk: fix typo that caused debug builds to fail (#8309)
Browse files Browse the repository at this point in the history
  • Loading branch information
poweifeng authored Dec 12, 2024
1 parent 23847c4 commit 6a772bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filament/backend/src/vulkan/memory/ResourcePointer.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ struct resource_ptr {
// only be used from VulkanDriver.
inline void dec() {
assert_invariant(mRef);
assert_invariant(!mRef->isHandleConsiderDestroyed());
assert_invariant(!mRef->isHandleConsideredDestroyed());
mRef->setHandleConsiderDestroyed();
mRef->dec();
}
Expand Down

0 comments on commit 6a772bf

Please sign in to comment.