You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Update the helper script to better align doxygen comments.
- Use consistent language when referring to the pNext member of structures.
- Reduce script warnings by adjusting the language used to refer to struct members.
- Fix docs generation script to correctly handle etor errors.
- Remove (comment out) deprecated/unused Doxygen flags
Signed-off-by: Will Damon <[email protected]>
Copy file name to clipboardExpand all lines: scripts/core/copy.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ details:
60
60
- "The application must ensure the memory pointed to by dstptr is accessible by the device on which the command list was created."
61
61
- "The implementation must not access the memory pointed to by dstptr as it is free to be modified by either the Host or device up until execution."
62
62
- "The value to initialize memory to is described by the pattern and the pattern size."
63
-
- "The pattern size must be a power-of-two and less than or equal to $x_command_queue_group_properties_t.maxMemoryFillPatternSize."
63
+
- "The pattern size must be a power-of-two and less than or equal to the `maxMemoryFillPatternSize` member of $x_command_queue_group_properties_t."
64
64
- "The application must ensure the events are accessible by the device on which the command list was created."
65
65
- "The application must ensure the command list and events were created, and the memory was allocated, on the same context."
66
66
- "The application must **not** call this function from simultaneous threads with the same command list handle."
@@ -150,7 +150,7 @@ params:
150
150
desc: "[in] destination pitch in bytes"
151
151
- type: "uint32_t"
152
152
name: dstSlicePitch
153
-
desc: "[in] destination slice pitch in bytes. This is required for 3D region copies where $x_copy_region_t.depth is not 0, otherwise it's ignored."
153
+
desc: "[in] destination slice pitch in bytes. This is required for 3D region copies where the `depth` member of $x_copy_region_t is not 0, otherwise it's ignored."
154
154
- type: "const void*"
155
155
name: srcptr
156
156
desc: "[in] pointer to source memory to copy from"
@@ -162,7 +162,7 @@ params:
162
162
desc: "[in] source pitch in bytes"
163
163
- type: "uint32_t"
164
164
name: srcSlicePitch
165
-
desc: "[in] source slice pitch in bytes. This is required for 3D region copies where $x_copy_region_t.depth is not 0, otherwise it's ignored."
165
+
desc: "[in] source slice pitch in bytes. This is required for 3D region copies where the `depth` member of $x_copy_region_t is not 0, otherwise it's ignored."
166
166
- type: $x_event_handle_t
167
167
name: hSignalEvent
168
168
desc: "[in][optional] handle of the event to signal on completion"
0 commit comments