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
964408d0
Commit
964408d0
authored
Feb 24, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Feb 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxgi: Initial IDXGISwapChain::Present() implementation.
parent
f4879dce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
swapchain.c
dlls/dxgi/swapchain.c
+7
-2
No files found.
dlls/dxgi/swapchain.c
View file @
964408d0
...
...
@@ -156,9 +156,14 @@ static HRESULT STDMETHODCALLTYPE dxgi_swapchain_GetDevice(IDXGISwapChain *iface,
static
HRESULT
STDMETHODCALLTYPE
dxgi_swapchain_Present
(
IDXGISwapChain
*
iface
,
UINT
sync_interval
,
UINT
flags
)
{
FIXME
(
"iface %p, sync_interval %u, flags %#x stub!
\n
"
,
iface
,
sync_interval
,
flags
)
;
struct
dxgi_swapchain
*
This
=
(
struct
dxgi_swapchain
*
)
iface
;
return
E_NOTIMPL
;
TRACE
(
"iface %p, sync_interval %u, flags %#x
\n
"
,
iface
,
sync_interval
,
flags
);
if
(
sync_interval
)
FIXME
(
"Unimplemented sync interval %u
\n
"
,
sync_interval
);
if
(
flags
)
FIXME
(
"Unimplemented flags %#x
\n
"
,
flags
);
return
IWineD3DSwapChain_Present
(
This
->
wined3d_swapchain
,
NULL
,
NULL
,
NULL
,
NULL
,
0
);
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_swapchain_GetBuffer
(
IDXGISwapChain
*
iface
,
...
...
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