• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2014-2022 Khronos Group.
2//
3// SPDX-License-Identifier: CC-BY-4.0
4
5ifdef::VKSC_VERSION_1_0[]
6
7[appendix]
8[[appendix-scid]]
9= Safety Critical ID Tags (SCID)
10
11Safety Critical ID tags are used within the Vulkan SC Specification to
12reference safety critical change justifications intended to give the reader
13an understanding of why deviations from the Vulkan Specification have been
14made.
15
16The SCID tags reference the Change Justification Table in the Introduction.
17
18== Format of SCID Tags
19
20SCID tags are formatted like this:
21
22[source,asciidoc]
23----
24<<SCID-#>>
25----
26
27where # is replaced by the specific SCID number (e.g. SCID-3).
28The SCID will show up in the specification enclosed with [] brackets (e.g.
29[SCID-3]).
30
31If multiple SCIDs are being referenced, separate them with a comma (e.g.
32[SCID-3], [SCID-5]).
33
34The SCIDs should be placed at the end of the sentence describing the change
35(e.g. This flag is not supported in Vulkan SC [SCID-8]).
36A SCID should also be added to any entry that will appear in the Vulkan SC
37deviations appendix.
38
39endif::VKSC_VERSION_1_0[]
40