From fd35f51845b6e88b9c3185ee466ed90baa7f4533 Mon Sep 17 00:00:00 2001 From: Xiang Li Date: Thu, 16 May 2024 10:37:14 -0700 Subject: [PATCH] [INF-0002] fix comment about resource not fully bound. (#238) Fix the comment in resource not fully bound example. Co-authored-by: David Peixotto Co-authored-by: Damyan Pepper --- proposals/infra/INF-0002-root-signature-in-clang.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proposals/infra/INF-0002-root-signature-in-clang.md b/proposals/infra/INF-0002-root-signature-in-clang.md index ad6a4d90..6669e5c0 100644 --- a/proposals/infra/INF-0002-root-signature-in-clang.md +++ b/proposals/infra/INF-0002-root-signature-in-clang.md @@ -467,7 +467,7 @@ elimation has completed. Most values like ShaderVisibility/ParameterType are covered by syntactical checks in Sema. -Only list special rule here. +The additional semantic rules not already covered by the grammar are listed here. - For DESCRIPTOR_RANGE_FLAGS on a Sampler, only the following values are valid - 0 @@ -626,7 +626,7 @@ TODO #### Resource used in DXIL must be fully bound in root signature. ``` - // B is bound to t1, but not in root descriptor. + // B is bound to t1, but no root parameters cover t1. Buffer B : register(t1); [RootSignature("")] void main() : SV_Target {