Skip to content

Commit 5b5cca7

Browse files
committed
Fixed inconsistency within the "transition_image_layout()" function, where "dependency_info" was incorrectly written in camelCase, not snake_case like in the C++ source files.
1 parent f1be81e commit 5b5cca7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

en/03_Drawing_a_triangle/03_Drawing/01_Command_buffers.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ void transition_image_layout(
200200
.dependencyFlags = {},
201201
.imageMemoryBarrierCount = 1,
202202
.pImageMemoryBarriers = &barrier};
203-
commandBuffer.pipelineBarrier2(dependencyInfo);
203+
commandBuffer.pipelineBarrier2(dependency_info);
204204
}
205205
----
206206

0 commit comments

Comments
 (0)