Add a missing space in the error message of SetIndexBuffer

BUG=dawn:887

Change-Id: I108377328ce735a2daaca9512ded6b35e0bfaa14
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/74460
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Jiawei Shao 2021-12-23 09:50:36 +00:00 committed by Dawn LUCI CQ
parent 57421fbd96
commit 67a22dee01
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ namespace dawn_native {
"Index format must be specified"); "Index format must be specified");
DAWN_INVALID_IF(offset % uint64_t(IndexFormatSize(format)) != 0, DAWN_INVALID_IF(offset % uint64_t(IndexFormatSize(format)) != 0,
"Index buffer offset (%u) is not a multiple of the size (%u)" "Index buffer offset (%u) is not a multiple of the size (%u) "
"of %s.", "of %s.",
offset, IndexFormatSize(format), format); offset, IndexFormatSize(format), format);