Skip to content

Commit d419b5d

Browse files
authored
Fix comment typos (#122)
1 parent 65fc3eb commit d419b5d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source_common/trackers/command_buffer.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ uint64_t CommandBuffer::renderPassBegin(const RenderPass& renderPass,
7575
assert(!currentRenderPass);
7676

7777
// Record the current draw call count so that the delta can be computed at
78-
// the end of the renderpass; this gives the number of draw calls in that pass
78+
// the end of the render pass; this gives the number of draw calls in that pass
7979
renderPassStartDrawCount = stats.getDrawCallCount();
8080

8181
// Create the workload object and populate with config information
@@ -85,11 +85,11 @@ uint64_t CommandBuffer::renderPassBegin(const RenderPass& renderPass,
8585
const auto tagID = Tracker::LCSWorkload::assignTagID();
8686
stats.incRenderPassCount();
8787

88-
// Create a new renderpass object
88+
// Create a new render pass object
8989
const auto workload =
9090
std::make_shared<LCSRenderPass>(tagID, renderPass, width, height, suspending, oneTimeSubmit);
9191

92-
// Track the workload as it will be modified at the end of the renderpass
92+
// Track the workload as it will be modified at the end of the render pass
9393
currentRenderPass = workload;
9494

9595
// Add a command to the layer-side command stream
@@ -99,10 +99,10 @@ uint64_t CommandBuffer::renderPassBegin(const RenderPass& renderPass,
9999
}
100100
else
101101
{
102-
// Create a renderpass continuation object
102+
// Create a render pass continuation object
103103
const auto workload = std::make_shared<LCSRenderPassContinuation>(suspending);
104104

105-
// Track the workload as it will be modified at the end of the renderpass
105+
// Track the workload as it will be modified at the end of the render pass
106106
currentRenderPass = workload;
107107

108108
// Add a command to the layer-side command stream

0 commit comments

Comments
 (0)