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
5f356efa
Commit
5f356efa
authored
Mar 09, 2015
by
Austin English
Committed by
Alexandre Julliard
Mar 10, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxdiagn: Add bNoHardware stub property.
parent
654657b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
provider.c
dlls/dxdiagn/provider.c
+5
-0
No files found.
dlls/dxdiagn/provider.c
View file @
5f356efa
...
...
@@ -918,6 +918,7 @@ static HRESULT fill_display_information_d3d(IDxDiagContainerImpl_Container *node
static
const
WCHAR
b3DAccelerationExists
[]
=
{
'b'
,
'3'
,
'D'
,
'A'
,
'c'
,
'c'
,
'e'
,
'l'
,
'e'
,
'r'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'E'
,
'x'
,
'i'
,
's'
,
't'
,
's'
,
0
};
static
const
WCHAR
b3DAccelerationEnabled
[]
=
{
'b'
,
'3'
,
'D'
,
'A'
,
'c'
,
'c'
,
'e'
,
'l'
,
'e'
,
'r'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'E'
,
'n'
,
'a'
,
'b'
,
'l'
,
'e'
,
'd'
,
0
};
static
const
WCHAR
bDDAccelerationEnabled
[]
=
{
'b'
,
'D'
,
'D'
,
'A'
,
'c'
,
'c'
,
'e'
,
'l'
,
'e'
,
'r'
,
'a'
,
't'
,
'i'
,
'o'
,
'n'
,
'E'
,
'n'
,
'a'
,
'b'
,
'l'
,
'e'
,
'd'
,
0
};
static
const
WCHAR
bNoHardware
[]
=
{
'b'
,
'N'
,
'o'
,
'H'
,
'a'
,
'r'
,
'd'
,
'w'
,
'a'
,
'r'
,
'e'
,
0
};
D3DADAPTER_IDENTIFIER9
adapter_info
;
D3DDISPLAYMODE
adapter_mode
;
...
...
@@ -1063,6 +1064,10 @@ static HRESULT fill_display_information_d3d(IDxDiagContainerImpl_Container *node
hr
=
add_bool_property
(
display_adapter
,
bDDAccelerationEnabled
,
hardware_accel
);
if
(
FAILED
(
hr
))
goto
cleanup
;
hr
=
add_bool_property
(
display_adapter
,
bNoHardware
,
FALSE
);
if
(
FAILED
(
hr
))
goto
cleanup
;
}
hr
=
S_OK
;
...
...
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