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
cf3053f5
Commit
cf3053f5
authored
Aug 13, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Aug 15, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Avoid LPDIRECT3DRMPICKEDARRAY.
parent
cbaa17d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
12 deletions
+8
-12
viewport.c
dlls/d3drm/viewport.c
+6
-10
d3drmobj.h
include/d3drmobj.h
+2
-2
No files found.
dlls/d3drm/viewport.c
View file @
cf3053f5
...
...
@@ -341,12 +341,10 @@ static HRESULT WINAPI IDirect3DRMViewportImpl_GetPlane(IDirect3DRMViewport* ifac
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IDirect3DRMViewportImpl_Pick
(
IDirect3DRMViewport
*
iface
,
LONG
x
,
LONG
y
,
LPDIRECT3DRMPICKEDARRAY
*
return_
visuals
)
static
HRESULT
WINAPI
IDirect3DRMViewportImpl_Pick
(
IDirect3DRMViewport
*
iface
,
LONG
x
,
LONG
y
,
IDirect3DRMPickedArray
**
visuals
)
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport
(
iface
);
FIXME
(
"(%p/%p)->(%u, %u, %p): stub
\n
"
,
iface
,
This
,
x
,
y
,
return_visuals
);
FIXME
(
"iface %p, x %d, y %d, visuals %p stub!
\n
"
,
iface
,
x
,
y
,
visuals
);
return
E_NOTIMPL
;
}
...
...
@@ -760,12 +758,10 @@ static HRESULT WINAPI IDirect3DRMViewport2Impl_GetPlane(IDirect3DRMViewport2* if
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IDirect3DRMViewport2Impl_Pick
(
IDirect3DRMViewport2
*
iface
,
LONG
x
,
LONG
y
,
LPDIRECT3DRMPICKEDARRAY
*
return_
visuals
)
static
HRESULT
WINAPI
IDirect3DRMViewport2Impl_Pick
(
IDirect3DRMViewport2
*
iface
,
LONG
x
,
LONG
y
,
IDirect3DRMPickedArray
**
visuals
)
{
IDirect3DRMViewportImpl
*
This
=
impl_from_IDirect3DRMViewport2
(
iface
);
FIXME
(
"(%p/%p)->(%u, %u, %p): stub
\n
"
,
iface
,
This
,
x
,
y
,
return_visuals
);
FIXME
(
"iface %p, x %d, y %d, visuals %p stub!
\n
"
,
iface
,
x
,
y
,
visuals
);
return
E_NOTIMPL
;
}
...
...
include/d3drmobj.h
View file @
cf3053f5
...
...
@@ -826,7 +826,7 @@ DECLARE_INTERFACE_(IDirect3DRMViewport,IDirect3DRMObject)
STDMETHOD
(
GetCamera
)(
THIS_
struct
IDirect3DRMFrame
**
camera
)
PURE
;
STDMETHOD
(
GetDevice
)(
THIS_
IDirect3DRMDevice
**
device
)
PURE
;
STDMETHOD
(
GetPlane
)(
THIS_
D3DVALUE
*
left
,
D3DVALUE
*
right
,
D3DVALUE
*
bottom
,
D3DVALUE
*
top
)
PURE
;
STDMETHOD
(
Pick
)(
THIS_
LONG
x
,
LONG
y
,
LPDIRECT3DRMPICKEDARRAY
*
return_
visuals
)
PURE
;
STDMETHOD
(
Pick
)(
THIS_
LONG
x
,
LONG
y
,
struct
IDirect3DRMPickedArray
**
visuals
)
PURE
;
STDMETHOD_
(
BOOL
,
GetUniformScaling
)(
THIS
)
PURE
;
STDMETHOD_
(
LONG
,
GetX
)(
THIS
)
PURE
;
STDMETHOD_
(
LONG
,
GetY
)(
THIS
)
PURE
;
...
...
@@ -966,7 +966,7 @@ DECLARE_INTERFACE_(IDirect3DRMViewport2,IDirect3DRMObject)
STDMETHOD
(
GetCamera
)(
THIS_
struct
IDirect3DRMFrame3
**
camera
)
PURE
;
STDMETHOD
(
GetDevice
)(
THIS_
IDirect3DRMDevice3
**
device
)
PURE
;
STDMETHOD
(
GetPlane
)(
THIS_
D3DVALUE
*
left
,
D3DVALUE
*
right
,
D3DVALUE
*
bottom
,
D3DVALUE
*
top
)
PURE
;
STDMETHOD
(
Pick
)(
THIS_
LONG
x
,
LONG
y
,
LPDIRECT3DRMPICKEDARRAY
*
return_
visuals
)
PURE
;
STDMETHOD
(
Pick
)(
THIS_
LONG
x
,
LONG
y
,
struct
IDirect3DRMPickedArray
**
visuals
)
PURE
;
STDMETHOD_
(
BOOL
,
GetUniformScaling
)(
THIS
)
PURE
;
STDMETHOD_
(
LONG
,
GetX
)(
THIS
)
PURE
;
STDMETHOD_
(
LONG
,
GetY
)(
THIS
)
PURE
;
...
...
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