Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a586fd08
Commit
a586fd08
authored
Mar 10, 2022
by
Zebediah Figura
Committed by
Alexandre Julliard
Jan 26, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d11: Implement D3D11_FEATURE_D3D11_OPTIONS2.
parent
4d2d6666
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
device.c
dlls/d3d11/device.c
+20
-0
No files found.
dlls/d3d11/device.c
View file @
a586fd08
...
...
@@ -4162,6 +4162,26 @@ static HRESULT STDMETHODCALLTYPE d3d11_device_CheckFeatureSupport(ID3D11Device2
return
S_OK
;
}
case
D3D11_FEATURE_D3D11_OPTIONS2
:
{
D3D11_FEATURE_DATA_D3D11_OPTIONS2
*
options
=
feature_support_data
;
if
(
feature_support_data_size
!=
sizeof
(
*
options
))
{
WARN
(
"Invalid data size.
\n
"
);
return
E_INVALIDARG
;
}
options
->
PSSpecifiedStencilRefSupported
=
FALSE
;
options
->
TypedUAVLoadAdditionalFormats
=
FALSE
;
options
->
ROVsSupported
=
FALSE
;
options
->
ConservativeRasterizationTier
=
D3D11_CONSERVATIVE_RASTERIZATION_NOT_SUPPORTED
;
options
->
TiledResourcesTier
=
D3D11_TILED_RESOURCES_NOT_SUPPORTED
;
options
->
MapOnDefaultTextures
=
FALSE
;
options
->
StandardSwizzle
=
FALSE
;
options
->
UnifiedMemoryArchitecture
=
FALSE
;
return
S_OK
;
}
case
D3D11_FEATURE_D3D11_OPTIONS3
:
{
D3D11_FEATURE_DATA_D3D11_OPTIONS3
*
options
=
feature_support_data
;
...
...
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