Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
696515d8
Commit
696515d8
authored
Jan 13, 2023
by
Conor McCarthy
Committed by
Alexandre Julliard
Jan 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d11: Apply the 'KEEP' options when sending RTVs and UAVs to wined3d.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53761
parent
3356ba68
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
device.c
dlls/d3d11/device.c
+3
-2
No files found.
dlls/d3d11/device.c
View file @
696515d8
...
@@ -1156,8 +1156,9 @@ static void STDMETHODCALLTYPE d3d11_device_context_OMSetRenderTargetsAndUnordere
...
@@ -1156,8 +1156,9 @@ static void STDMETHODCALLTYPE d3d11_device_context_OMSetRenderTargetsAndUnordere
}
}
}
}
wined3d_device_context_set_render_targets_and_unordered_access_views
(
context
->
wined3d_context
,
ARRAY_SIZE
(
wined3d_rtvs
),
wined3d_device_context_set_render_targets_and_unordered_access_views
(
context
->
wined3d_context
,
wined3d_rtvs
,
dsv
?
dsv
->
wined3d_view
:
NULL
,
ARRAY_SIZE
(
wined3d_uavs
),
wined3d_uavs
,
render_target_view_count
==
~
0u
?
~
0u
:
ARRAY_SIZE
(
wined3d_rtvs
),
wined3d_rtvs
,
dsv
?
dsv
->
wined3d_view
:
NULL
,
uav_count
==
~
0u
?
~
0u
:
ARRAY_SIZE
(
wined3d_uavs
),
wined3d_uavs
,
wined3d_initial_counts
);
wined3d_initial_counts
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment