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
1c9016c7
Commit
1c9016c7
authored
Feb 17, 2015
by
Henri Verbeet
Committed by
Alexandre Julliard
Feb 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxgi: Implement dxgi_surface_SetPrivateDataInterface().
parent
64b23f6c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
surface.c
dlls/dxgi/surface.c
+4
-2
No files found.
dlls/dxgi/surface.c
View file @
1c9016c7
...
...
@@ -123,9 +123,11 @@ static HRESULT STDMETHODCALLTYPE dxgi_surface_SetPrivateData(IDXGISurface *iface
static
HRESULT
STDMETHODCALLTYPE
dxgi_surface_SetPrivateDataInterface
(
IDXGISurface
*
iface
,
REFGUID
guid
,
const
IUnknown
*
object
)
{
FIXME
(
"iface %p, guid %s, object %p stub!
\n
"
,
iface
,
debugstr_guid
(
guid
),
object
);
struct
dxgi_surface
*
surface
=
impl_from_IDXGISurface
(
iface
);
return
E_NOTIMPL
;
TRACE
(
"iface %p, guid %s, object %p.
\n
"
,
iface
,
debugstr_guid
(
guid
),
object
);
return
dxgi_set_private_data_interface
(
&
surface
->
private_store
,
guid
,
object
);
}
static
HRESULT
STDMETHODCALLTYPE
dxgi_surface_GetPrivateData
(
IDXGISurface
*
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