Skip to content

Commit 65053a8

Browse files
layers: Fix WARNING-Shader-OutputNotConsumed grammar
1 parent 2586cd1 commit 65053a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

layers/core_checks/cc_shader_interface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ bool CoreChecks::ValidateInterfaceBetweenStages(const ShaderStageState& producer
427427
skip |= LogPerformanceWarning(
428428
"WARNING-Shader-OutputNotConsumed", objlist, create_info_loc,
429429
"(SPIR-V Interface) %s has an Output value declared at Location %" PRIu32 " Component %" PRIu32
430-
", but there is no corresponding Input declared in %s.\nThis is not invalid, but might the write to to the "
430+
", but there is no corresponding Input declared in %s.\nThis is not invalid, but the write to the "
431431
"unused Output is discarded.\nThe Output variable is:\n %s",
432432
producer_entrypoint.Describe().c_str(), location, component, consumer_entrypoint.Describe().c_str(),
433433
producer_module.DescribeType(output_var->type_id).c_str());

0 commit comments

Comments
 (0)