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
Copy file name to clipboardExpand all lines: .github/workflows/clang-format-checker.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ jobs:
82
82
--end-rev $END_REV \
83
83
--changed-files "$CHANGED_FILES"
84
84
apply_diff:
85
-
if: ${{ github.event_name == 'issue_comment' && endsWith(github.event.comment.body, '- [x] Check this box to apply formatting changes to this branch.') }}
85
+
if: ${{ github.event_name == 'issue_comment' && github.event.comment.user.login == 'github-actions[bot]' && endsWith(github.event.comment.body, '- [x] Check this box to apply formatting changes to this branch.') }}
Copy file name to clipboardExpand all lines: docs/ReleaseNotes.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,16 @@ line upon naming the release. Refer to previous for appropriate section names.
41
41
42
42
- Fixed non-deterministic DXIL/PDB output when compiling shaders with resource arrays, debug info, and SM 6.6+. [#8171](https://github.com/microsoft/DirectXShaderCompiler/issues/8171)
43
43
- Fixed mesh shader semantics that were incorrectly case sensitive.
44
+
- DXIL validation: added validation for `CreateHandleFromBinding`.
45
+
- DXIL validation now rejects non-standard integer bit widths (e.g. `i25`) in instructions.
46
+
47
+
#### Other Changes
48
+
49
+
-`/P` now matches `cl.exe` behavior: preprocesses to `<inputname>.i` by
50
+
default, with `/Fi` to override the output filename. The old FXC-style `/P
51
+
<filename>` positional syntax has been renamed to `/Po`.
0 commit comments