summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Vulkan
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2026-01-17 19:10:50 -0500
committerGitHub <noreply@github.com>2026-01-17 19:10:50 -0500
commit035bcffc63ecc803abeb6987f66a5b2f78f5f0bc (patch)
treeb46f7ec3d376fc2fef5ac0d2f48769b0e23e9353 /Source/Core/VideoBackends/Vulkan
parentd098f2bba9fac19d90526fb9f7aceb0bb405b4b4 (diff)
parent1e0473e44f5e21558d75b0121bd935bb50825c26 (diff)
Merge pull request #14289 from Sintendo/typos
Fix various typos and spelling mistakes
Diffstat (limited to 'Source/Core/VideoBackends/Vulkan')
-rw-r--r--Source/Core/VideoBackends/Vulkan/CommandBufferManager.h2
-rw-r--r--Source/Core/VideoBackends/Vulkan/StateTracker.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Vulkan/CommandBufferManager.h b/Source/Core/VideoBackends/Vulkan/CommandBufferManager.h
index 90e62bb805..45a322c270 100644
--- a/Source/Core/VideoBackends/Vulkan/CommandBufferManager.h
+++ b/Source/Core/VideoBackends/Vulkan/CommandBufferManager.h
@@ -42,7 +42,7 @@ public:
// Fence "counters" are used to track which commands have been completed by the GPU.
// If the last completed fence counter is greater or equal to N, it means that the work
// associated counter N has been completed by the GPU. The value of N to associate with
- // commands can be retreived by calling GetCurrentFenceCounter().
+ // commands can be retrieved by calling GetCurrentFenceCounter().
u64 GetCompletedFenceCounter() const { return m_completed_fence_counter; }
// Gets the fence that will be signaled when the currently executing command buffer is
diff --git a/Source/Core/VideoBackends/Vulkan/StateTracker.h b/Source/Core/VideoBackends/Vulkan/StateTracker.h
index 8de5fd54cc..da0e4d8387 100644
--- a/Source/Core/VideoBackends/Vulkan/StateTracker.h
+++ b/Source/Core/VideoBackends/Vulkan/StateTracker.h
@@ -66,7 +66,7 @@ public:
void SetViewport(const VkViewport& viewport);
void SetScissor(const VkRect2D& scissor);
- // Binds all dirty state to the commmand buffer.
+ // Binds all dirty state to the command buffer.
// If this returns false, you should not issue the draw.
bool Bind();