From 79064f0c9fd2ae6089109069af66e7feb0fdb2a8 Mon Sep 17 00:00:00 2001 From: Jaedeok Kim Date: Thu, 17 Jul 2025 21:26:49 +0900 Subject: [PATCH] wg_engine: Fixed typo in comment Fixed spelling error from 'neccessary' to 'necessary' in two comment lines within the renderShape() and renderImage() methods. --- src/renderer/wg_engine/tvgWgCompositor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/wg_engine/tvgWgCompositor.cpp b/src/renderer/wg_engine/tvgWgCompositor.cpp index e3cf7e06..81a01ff0 100644 --- a/src/renderer/wg_engine/tvgWgCompositor.cpp +++ b/src/renderer/wg_engine/tvgWgCompositor.cpp @@ -228,7 +228,7 @@ void WgCompositor::renderShape(WgContext& context, WgRenderDataShape* renderData { assert(renderData); assert(renderPassEncoder); - // apply clip path if neccessary + // apply clip path if necessary if (renderData->clips.count != 0) { renderClipPath(context, renderData); if (renderData->strokeFirst) { @@ -265,7 +265,7 @@ void WgCompositor::renderImage(WgContext& context, WgRenderDataPicture* renderDa { assert(renderData); assert(renderPassEncoder); - // apply clip path if neccessary + // apply clip path if necessary if (renderData->clips.count != 0) { renderClipPath(context, renderData); clipImage(context, renderData);