Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
vkd3d
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wine
vkd3d
Merge requests
!451
vkd3d: Report D3D12_FORMAT_SUPPORT2_UAV_TYPED_LOAD/STORE for UAV formats when supported.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
vkd3d: Report D3D12_FORMAT_SUPPORT2_UAV_TYPED_LOAD/STORE for UAV formats when supported.
hverbeet/vkd3d:for_upstream_0
into
master
Overview
0
Commits
2
Pipelines
3
Changes
1
Merged
Henri Verbeet
requested to merge
hverbeet/vkd3d:for_upstream_0
into
master
1 year ago
Overview
0
Commits
2
Pipelines
3
Changes
1
Expand
Merge request reports
Compare
master
version 1
73f2eb21
1 year ago
master (base)
and
latest version
latest version
c5cc4673
2 commits,
1 year ago
version 1
73f2eb21
2 commits,
1 year ago
1 file
+
7
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
libs/vkd3d/device.c
+
7
−
0
Options
@@ -2930,7 +2930,14 @@ static HRESULT STDMETHODCALLTYPE d3d12_device_CheckFeatureSupport(ID3D12Device5
if
(
image_features
&
VK_FORMAT_FEATURE_BLIT_SRC_BIT
)
data
->
Support1
|=
D3D12_FORMAT_SUPPORT1_MULTISAMPLE_RESOLVE
;
if
(
image_features
&
VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT
)
{
data
->
Support1
|=
D3D12_FORMAT_SUPPORT1_TYPED_UNORDERED_ACCESS_VIEW
;
if
(
device
->
vk_info
.
uav_read_without_format
)
data
->
Support2
|=
D3D12_FORMAT_SUPPORT2_UAV_TYPED_LOAD
;
/* We effectively require shaderStorageImageWriteWithoutFormat,
* so we can just report UAV_TYPED_STORE unconditionally. */
data
->
Support2
|=
D3D12_FORMAT_SUPPORT2_UAV_TYPED_STORE
;
}
if
(
image_features
&
VK_FORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT
)
data
->
Support2
|=
D3D12_FORMAT_SUPPORT2_UAV_ATOMIC_ADD
Loading