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
069e93f7
Commit
069e93f7
authored
Jun 17, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Jun 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Implement IDirect3DRMDeviceX_GetClassName.
parent
e5de1992
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
62 additions
and
7 deletions
+62
-7
device.c
dlls/d3drm/device.c
+12
-6
Makefile.in
dlls/d3drm/tests/Makefile.in
+1
-1
d3drm.c
dlls/d3drm/tests/d3drm.c
+49
-0
No files found.
dlls/d3drm/device.c
View file @
069e93f7
...
...
@@ -191,13 +191,13 @@ static HRESULT WINAPI IDirect3DRMDevice2Impl_GetName(IDirect3DRMDevice2* iface,
}
static
HRESULT
WINAPI
IDirect3DRMDevice2Impl_GetClassName
(
IDirect3DRMDevice2
*
iface
,
LPDWORD
size
,
LPSTR
name
)
LPDWORD
size
,
LPSTR
name
)
{
IDirect3DRMDeviceImpl
*
This
=
impl_from_IDirect3DRMDevice2
(
iface
);
FIXME
(
"(%p/%p)->(%p, %p): stub
\n
"
,
iface
,
This
,
size
,
name
);
TRACE
(
"(%p/%p)->(%p, %p)
\n
"
,
iface
,
This
,
size
,
name
);
return
E_NOTIMPL
;
return
IDirect3DRMDevice3_GetClassName
(
&
This
->
IDirect3DRMDevice3_iface
,
size
,
name
)
;
}
/*** IDirect3DRMDevice methods ***/
...
...
@@ -613,13 +613,19 @@ static HRESULT WINAPI IDirect3DRMDevice3Impl_GetName(IDirect3DRMDevice3* iface,
}
static
HRESULT
WINAPI
IDirect3DRMDevice3Impl_GetClassName
(
IDirect3DRMDevice3
*
iface
,
LPDWORD
size
,
LPSTR
name
)
LPDWORD
size
,
LPSTR
name
)
{
IDirect3DRMDeviceImpl
*
This
=
impl_from_IDirect3DRMDevice3
(
iface
);
FIXME
(
"(%p/%p)->(%p, %p): stub
\n
"
,
iface
,
This
,
size
,
name
);
TRACE
(
"(%p/%p)->(%p, %p)
\n
"
,
iface
,
This
,
size
,
name
);
return
E_NOTIMPL
;
if
(
!
size
||
*
size
<
strlen
(
"Device"
)
||
!
name
)
return
E_INVALIDARG
;
strcpy
(
name
,
"Device"
);
*
size
=
sizeof
(
"Device"
);
return
D3DRM_OK
;
}
/*** IDirect3DRMDevice methods ***/
...
...
dlls/d3drm/tests/Makefile.in
View file @
069e93f7
TESTDLL
=
d3drm.dll
IMPORTS
=
dxguid
IMPORTS
=
dxguid
ddraw user32
C_SRCS
=
\
d3drm.c
\
...
...
dlls/d3drm/tests/d3drm.c
View file @
069e93f7
...
...
@@ -1080,6 +1080,54 @@ static void test_Texture(void)
IDirect3DRM_Release
(
pD3DRM
);
}
static
void
test_Device
(
void
)
{
HRESULT
hr
;
LPDIRECT3DRM
pD3DRM
;
LPDIRECTDRAWCLIPPER
pClipper
;
LPDIRECT3DRMDEVICE
pDevice
;
GUID
driver
;
HWND
window
;
RECT
rc
;
DWORD
size
;
CHAR
cname
[
64
]
=
{
0
};
window
=
CreateWindowA
(
"static"
,
"d3drm_test"
,
WS_OVERLAPPEDWINDOW
,
0
,
0
,
300
,
200
,
0
,
0
,
0
,
0
);
GetClientRect
(
window
,
&
rc
);
hr
=
pDirect3DRMCreate
(
&
pD3DRM
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get IDirect3DRM interface (hr = %x)
\n
"
,
hr
);
hr
=
DirectDrawCreateClipper
(
0
,
&
pClipper
,
NULL
);
ok
(
hr
==
DD_OK
,
"Cannot get IDirectDrawClipper interface (hr = %x)
\n
"
,
hr
);
hr
=
IDirectDrawClipper_SetHWnd
(
pClipper
,
0
,
window
);
ok
(
hr
==
DD_OK
,
"Cannot set HWnd to Clipper (hr = %x)
\n
"
,
hr
);
memcpy
(
&
driver
,
&
IID_IDirect3DRGBDevice
,
sizeof
(
GUID
));
hr
=
IDirect3DRM3_CreateDeviceFromClipper
(
pD3DRM
,
pClipper
,
&
driver
,
rc
.
right
,
rc
.
bottom
,
&
pDevice
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get IDirect3DRMDevice interface (hr = %x)
\n
"
,
hr
);
hr
=
IDirect3DRMDevice_GetClassName
(
pDevice
,
NULL
,
cname
);
ok
(
hr
==
E_INVALIDARG
,
"GetClassName failed with %x
\n
"
,
hr
);
hr
=
IDirect3DRMDevice_GetClassName
(
pDevice
,
NULL
,
NULL
);
ok
(
hr
==
E_INVALIDARG
,
"GetClassName failed with %x
\n
"
,
hr
);
size
=
1
;
hr
=
IDirect3DRMDevice_GetClassName
(
pDevice
,
&
size
,
cname
);
ok
(
hr
==
E_INVALIDARG
,
"GetClassName failed with %x
\n
"
,
hr
);
size
=
sizeof
(
cname
);
hr
=
IDirect3DRMDevice_GetClassName
(
pDevice
,
&
size
,
cname
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get classname (hr = %x)
\n
"
,
hr
);
ok
(
size
==
sizeof
(
"Device"
),
"wrong size: %u
\n
"
,
size
);
ok
(
!
strcmp
(
cname
,
"Device"
),
"Expected cname to be
\"
Device
\"
, but got
\"
%s
\"\n
"
,
cname
);
IDirect3DRMDevice_Release
(
pDevice
);
IDirectDrawClipper_Release
(
pClipper
);
IDirect3DRM_Release
(
pD3DRM
);
DestroyWindow
(
window
);
}
static
void
test_frame_transform
(
void
)
{
HRESULT
hr
;
...
...
@@ -1145,6 +1193,7 @@ START_TEST(d3drm)
test_MeshBuilder3
();
test_Mesh
();
test_Frame
();
test_Device
();
test_Light
();
test_Material2
();
test_Texture
();
...
...
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