-
Notifications
You must be signed in to change notification settings - Fork 1.2k
DX12: Align copies b/w textures and buffers when D3D12_FEATURE_DATA_D3D12_OPTIONS13.UnrestrictedBufferTextureCopyPitchSupported is false
#7721
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d056472
5b6ebef
c9f6a3e
75e6e36
932567d
20d31b6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,15 @@ fails-if(vulkan) webgpu:api,operation,command_buffer,copyTextureToTexture:copy_d | |
| webgpu:api,operation,command_buffer,copyTextureToTexture:copy_depth_stencil:format="stencil8" | ||
| // Fails with OOM in CI. | ||
| fails-if(dx12) webgpu:api,operation,command_buffer,image_copy:offsets_and_sizes:* | ||
| webgpu:api,operation,command_buffer,image_copy:undefined_params:initMethod="WriteTexture";checkMethod="FullCopyT2B";dimension="1d" | ||
| webgpu:api,operation,command_buffer,image_copy:undefined_params:initMethod="WriteTexture";checkMethod="FullCopyT2B";dimension="2d" | ||
| webgpu:api,operation,command_buffer,image_copy:undefined_params:initMethod="WriteTexture";checkMethod="FullCopyT2B";dimension="3d" | ||
| webgpu:api,operation,command_buffer,image_copy:undefined_params:initMethod="WriteTexture";checkMethod="PartialCopyT2B";dimension="1d" | ||
| fails-if(dx12) webgpu:api,operation,command_buffer,image_copy:undefined_params:initMethod="WriteTexture";checkMethod="PartialCopyT2B";dimension="2d" | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's odd that
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, it seems the full path that's failing is a single subtest exercising a 3rd dimension for the Definitely follow-up work for something more edge-casey. Whew! |
||
| webgpu:api,operation,command_buffer,image_copy:undefined_params:initMethod="WriteTexture";checkMethod="PartialCopyT2B";dimension="3d" | ||
| webgpu:api,operation,command_buffer,image_copy:undefined_params:initMethod="CopyB2T";checkMethod="FullCopyT2B";dimension="1d" | ||
| webgpu:api,operation,command_buffer,image_copy:undefined_params:initMethod="CopyB2T";checkMethod="FullCopyT2B";dimension="2d" | ||
| fails-if(dx12,vulkan,metal) webgpu:api,operation,command_buffer,image_copy:undefined_params:initMethod="CopyB2T";checkMethod="FullCopyT2B";dimension="3d" | ||
| webgpu:api,operation,compute,basic:memcpy:* | ||
| //FAIL: webgpu:api,operation,compute,basic:large_dispatch:* | ||
| webgpu:api,operation,compute_pipeline,overrides:* | ||
|
|
@@ -157,4 +166,4 @@ webgpu:shader,validation,statement,statement_behavior:invalid_statements:body="l | |
| webgpu:shader,validation,statement,statement_behavior:invalid_statements:body="loop8" | ||
| webgpu:shader,validation,statement,statement_behavior:invalid_statements:body="switch1" | ||
| //FAIL: 9 invalid_statements subtests due to https://github.com/gfx-rs/wgpu/issues/7733 | ||
| webgpu:api,validation,render_pipeline,vertex_state:many_attributes_overlapping:* | ||
| webgpu:api,validation,render_pipeline,vertex_state:many_attributes_overlapping:* | ||
ErichDonGubler marked this conversation as resolved.
Show resolved
Hide resolved
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
onuts, I almost forgot to move this out of the previous release section.
@cwfitzgerald: I'm strongly considering experimenting with adding some CI that fails a PR that adds things to the
CHANGELOGoutside of theUnreleasedsection, unless opted out by a label. Thoughts?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we don't have to make it a required check, either. It can simply be a signal that something might be wrong, at first.