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
77c194ff
Commit
77c194ff
authored
Jun 15, 2011
by
Andrew Nguyen
Committed by
Alexandre Julliard
Jun 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxdiagn: Remove the Direct3D usage in the fallback display information code.
parent
f750cf33
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
34 deletions
+1
-34
provider.c
dlls/dxdiagn/provider.c
+1
-34
No files found.
dlls/dxdiagn/provider.c
View file @
77c194ff
...
...
@@ -171,37 +171,6 @@ HRESULT DXDiag_CreateDXDiagProvider(LPCLASSFACTORY iface, LPUNKNOWN punkOuter, R
return
IDxDiagProviderImpl_QueryInterface
((
PDXDIAGPROVIDER
)
provider
,
riid
,
ppobj
);
}
static
void
get_display_device_id
(
WCHAR
*
szIdentifierBuffer
)
{
static
const
WCHAR
szNA
[]
=
{
'n'
,
'/'
,
'a'
,
0
};
HRESULT
hr
=
E_FAIL
;
HMODULE
d3d9_handle
;
IDirect3D9
*
(
WINAPI
*
pDirect3DCreate9
)(
UINT
)
=
NULL
;
IDirect3D9
*
pD3d
=
NULL
;
D3DADAPTER_IDENTIFIER9
adapter_ident
;
/* Retrieves the display device identifier from the d3d9 implementation. */
d3d9_handle
=
LoadLibraryA
(
"d3d9.dll"
);
if
(
d3d9_handle
)
pDirect3DCreate9
=
(
void
*
)
GetProcAddress
(
d3d9_handle
,
"Direct3DCreate9"
);
if
(
pDirect3DCreate9
)
pD3d
=
pDirect3DCreate9
(
D3D_SDK_VERSION
);
if
(
pD3d
)
hr
=
IDirect3D9_GetAdapterIdentifier
(
pD3d
,
D3DADAPTER_DEFAULT
,
0
,
&
adapter_ident
);
if
(
SUCCEEDED
(
hr
))
{
StringFromGUID2
(
&
adapter_ident
.
DeviceIdentifier
,
szIdentifierBuffer
,
39
);
}
else
{
memcpy
(
szIdentifierBuffer
,
szNA
,
sizeof
(
szNA
));
}
if
(
pD3d
)
IDirect3D9_Release
(
pD3d
);
if
(
d3d9_handle
)
FreeLibrary
(
d3d9_handle
);
}
static
void
free_property_information
(
IDxDiagContainerImpl_Property
*
prop
)
{
VariantClear
(
&
prop
->
vProp
);
...
...
@@ -977,9 +946,7 @@ static HRESULT fill_display_information_fallback(IDxDiagContainerImpl_Container
}
}
get_display_device_id
(
buffer
);
hr
=
add_bstr_property
(
display_adapter
,
szDeviceIdentifier
,
buffer
);
hr
=
add_bstr_property
(
display_adapter
,
szDeviceIdentifier
,
szEmpty
);
if
(
FAILED
(
hr
))
goto
cleanup
;
...
...
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