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
7170a202
Commit
7170a202
authored
Sep 10, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxgi: Add a separate function for dxgi_adapter initialization.
parent
fa07d937
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
6 deletions
+12
-6
adapter.c
dlls/dxgi/adapter.c
+9
-1
dxgi_main.c
dlls/dxgi/dxgi_main.c
+1
-4
dxgi_private.h
dlls/dxgi/dxgi_private.h
+2
-1
No files found.
dlls/dxgi/adapter.c
View file @
7170a202
...
...
@@ -142,7 +142,7 @@ static UINT STDMETHODCALLTYPE dxgi_adapter_get_ordinal(IWineDXGIAdapter *iface)
return
This
->
ordinal
;
}
const
struct
IWineDXGIAdapterVtbl
dxgi_adapter_vtbl
=
static
const
struct
IWineDXGIAdapterVtbl
dxgi_adapter_vtbl
=
{
/* IUnknown methods */
dxgi_adapter_QueryInterface
,
...
...
@@ -160,3 +160,11 @@ const struct IWineDXGIAdapterVtbl dxgi_adapter_vtbl =
/* IWineDXGIAdapter methods */
dxgi_adapter_get_ordinal
,
};
void
dxgi_adapter_init
(
struct
dxgi_adapter
*
adapter
,
IDXGIFactory
*
parent
,
UINT
ordinal
)
{
adapter
->
vtbl
=
&
dxgi_adapter_vtbl
;
adapter
->
parent
=
parent
;
adapter
->
refcount
=
1
;
adapter
->
ordinal
=
ordinal
;
}
dlls/dxgi/dxgi_main.c
View file @
7170a202
...
...
@@ -129,10 +129,7 @@ HRESULT WINAPI CreateDXGIFactory(REFIID riid, void **factory)
goto
fail
;
}
adapter
->
vtbl
=
&
dxgi_adapter_vtbl
;
adapter
->
refcount
=
1
;
adapter
->
ordinal
=
i
;
adapter
->
parent
=
(
IDXGIFactory
*
)
object
;
dxgi_adapter_init
(
adapter
,
(
IDXGIFactory
*
)
object
,
i
);
object
->
adapters
[
i
]
=
(
IDXGIAdapter
*
)
adapter
;
}
...
...
dlls/dxgi/dxgi_private.h
View file @
7170a202
...
...
@@ -64,7 +64,6 @@ struct dxgi_device
};
/* IDXGIAdapter */
extern
const
struct
IWineDXGIAdapterVtbl
dxgi_adapter_vtbl
;
struct
dxgi_adapter
{
const
struct
IWineDXGIAdapterVtbl
*
vtbl
;
...
...
@@ -73,6 +72,8 @@ struct dxgi_adapter
UINT
ordinal
;
};
void
dxgi_adapter_init
(
struct
dxgi_adapter
*
adapter
,
IDXGIFactory
*
parent
,
UINT
ordinal
);
/* IDXGISwapChain */
extern
const
struct
IDXGISwapChainVtbl
dxgi_swapchain_vtbl
;
struct
dxgi_swapchain
...
...
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