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
df36fca9
Commit
df36fca9
authored
May 03, 2012
by
Christian Costa
Committed by
Alexandre Julliard
May 07, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Implement IDirect3DRMFrameX_GetChildren method and IDirect3DRMFrameArray interface.
parent
722efadc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
171 additions
and
12 deletions
+171
-12
frame.c
dlls/d3drm/frame.c
+156
-4
d3drm.c
dlls/d3drm/tests/d3drm.c
+15
-8
No files found.
dlls/d3drm/frame.c
View file @
df36fca9
...
...
@@ -48,6 +48,15 @@ struct IDirect3DRMFrameImpl {
IDirect3DRMLight
**
lights
;
};
typedef
struct
{
IDirect3DRMFrameArray
IDirect3DRMFrameArray_iface
;
LONG
ref
;
ULONG
size
;
LPDIRECT3DRMFRAME
*
frames
;
}
IDirect3DRMFrameArrayImpl
;
HRESULT
Direct3DRMFrameArray_create
(
IDirect3DRMFrameArray
**
obj
);
static
inline
IDirect3DRMFrameImpl
*
impl_from_IDirect3DRMFrame2
(
IDirect3DRMFrame2
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
IDirect3DRMFrameImpl
,
IDirect3DRMFrame2_iface
);
...
...
@@ -299,9 +308,9 @@ static HRESULT WINAPI IDirect3DRMFrame2Impl_GetChildren(IDirect3DRMFrame2* iface
{
IDirect3DRMFrameImpl
*
This
=
impl_from_IDirect3DRMFrame2
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
children
);
TRACE
(
"(%p/%p)->(%p)
\n
"
,
iface
,
This
,
children
);
return
E_NOTIMPL
;
return
IDirect3DRMFrame3_GetChildren
(
&
This
->
IDirect3DRMFrame3_iface
,
children
)
;
}
static
D3DCOLOR
WINAPI
IDirect3DRMFrame2Impl_GetColor
(
IDirect3DRMFrame2
*
iface
)
...
...
@@ -1284,10 +1293,33 @@ static HRESULT WINAPI IDirect3DRMFrame3Impl_GetChildren(IDirect3DRMFrame3* iface
LPDIRECT3DRMFRAMEARRAY
*
children
)
{
IDirect3DRMFrameImpl
*
This
=
impl_from_IDirect3DRMFrame3
(
iface
);
IDirect3DRMFrameArrayImpl
*
obj
;
HRESULT
hr
;
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
children
);
TRACE
(
"(%p/%p)->(%p)
\n
"
,
iface
,
This
,
children
);
return
E_NOTIMPL
;
if
(
!
children
)
return
D3DRMERR_BADVALUE
;
hr
=
Direct3DRMFrameArray_create
(
children
);
if
(
hr
!=
D3DRM_OK
)
return
hr
;
obj
=
(
IDirect3DRMFrameArrayImpl
*
)
*
children
;
obj
->
size
=
This
->
nb_children
;
if
(
This
->
nb_children
)
{
ULONG
i
;
obj
->
frames
=
HeapAlloc
(
GetProcessHeap
(),
0
,
This
->
nb_children
*
sizeof
(
LPDIRECT3DRMFRAME
));
if
(
!
obj
->
frames
)
return
E_OUTOFMEMORY
;
for
(
i
=
0
;
i
<
This
->
nb_children
;
i
++
)
IDirect3DRMFrame3_QueryInterface
(
This
->
children
[
i
],
&
IID_IDirect3DRMFrame
,
(
void
**
)
&
obj
->
frames
[
i
]);
}
return
D3DRM_OK
;
}
static
D3DCOLOR
WINAPI
IDirect3DRMFrame3Impl_GetColor
(
IDirect3DRMFrame3
*
iface
)
...
...
@@ -2195,3 +2227,123 @@ HRESULT Direct3DRMFrame_create(REFIID riid, IUnknown** ppObj)
return
S_OK
;
}
/*** IUnknown methods ***/
static
HRESULT
WINAPI
IDirect3DRMFrameArrayImpl_QueryInterface
(
IDirect3DRMFrameArray
*
iface
,
REFIID
riid
,
void
**
object
)
{
IDirect3DRMFrameArrayImpl
*
This
=
(
IDirect3DRMFrameArrayImpl
*
)
iface
;
TRACE
(
"(%p/%p)->(%s, %p)
\n
"
,
iface
,
This
,
debugstr_guid
(
riid
),
object
);
*
object
=
NULL
;
if
(
IsEqualGUID
(
riid
,
&
IID_IUnknown
)
||
IsEqualGUID
(
riid
,
&
IID_IDirect3DRMFrameArray
))
{
*
object
=
&
This
->
IDirect3DRMFrameArray_iface
;
}
else
{
FIXME
(
"interface %s not implemented
\n
"
,
debugstr_guid
(
riid
));
return
E_NOINTERFACE
;
}
IDirect3DRMFrameArray_AddRef
(
iface
);
return
S_OK
;
}
static
ULONG
WINAPI
IDirect3DRMFrameArrayImpl_AddRef
(
IDirect3DRMFrameArray
*
iface
)
{
IDirect3DRMFrameArrayImpl
*
This
=
(
IDirect3DRMFrameArrayImpl
*
)
iface
;
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(): new ref = %u
\n
"
,
This
,
ref
);
return
ref
;
}
static
ULONG
WINAPI
IDirect3DRMFrameArrayImpl_Release
(
IDirect3DRMFrameArray
*
iface
)
{
IDirect3DRMFrameArrayImpl
*
This
=
(
IDirect3DRMFrameArrayImpl
*
)
iface
;
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
ULONG
i
;
TRACE
(
"(%p)->(): new ref = %u
\n
"
,
This
,
ref
);
if
(
!
ref
)
{
for
(
i
=
0
;
i
<
This
->
size
;
i
++
)
IDirect3DRMFrame_Release
(
This
->
frames
[
i
]);
HeapFree
(
GetProcessHeap
(),
0
,
This
->
frames
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
}
return
ref
;
}
/*** IDirect3DRMArray methods ***/
static
DWORD
WINAPI
IDirect3DRMFrameArrayImpl_GetSize
(
IDirect3DRMFrameArray
*
iface
)
{
IDirect3DRMFrameArrayImpl
*
This
=
(
IDirect3DRMFrameArrayImpl
*
)
iface
;
TRACE
(
"(%p)->() = %d
\n
"
,
This
,
This
->
size
);
return
This
->
size
;
}
/*** IDirect3DRMFrameArray methods ***/
static
HRESULT
WINAPI
IDirect3DRMFrameArrayImpl_GetElement
(
IDirect3DRMFrameArray
*
iface
,
DWORD
index
,
LPDIRECT3DRMFRAME
*
frame
)
{
IDirect3DRMFrameArrayImpl
*
This
=
(
IDirect3DRMFrameArrayImpl
*
)
iface
;
TRACE
(
"(%p)->(%u, %p)
\n
"
,
This
,
index
,
frame
);
if
(
!
frame
)
return
D3DRMERR_BADVALUE
;
*
frame
=
NULL
;
if
(
index
>=
This
->
size
)
return
D3DRMERR_BADVALUE
;
IDirect3DRMFrame_AddRef
(
This
->
frames
[
index
]);
*
frame
=
This
->
frames
[
index
];
return
D3DRM_OK
;
}
static
const
struct
IDirect3DRMFrameArrayVtbl
Direct3DRMFrameArray_Vtbl
=
{
/*** IUnknown methods ***/
IDirect3DRMFrameArrayImpl_QueryInterface
,
IDirect3DRMFrameArrayImpl_AddRef
,
IDirect3DRMFrameArrayImpl_Release
,
/*** IDirect3DRMArray methods ***/
IDirect3DRMFrameArrayImpl_GetSize
,
/*** IDirect3DRMFrameArray methods ***/
IDirect3DRMFrameArrayImpl_GetElement
};
HRESULT
Direct3DRMFrameArray_create
(
IDirect3DRMFrameArray
**
obj
)
{
IDirect3DRMFrameArrayImpl
*
object
;
TRACE
(
"(%p)
\n
"
,
obj
);
*
obj
=
NULL
;
object
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
IDirect3DRMFrameArrayImpl
));
if
(
!
object
)
{
ERR
(
"Out of memory
\n
"
);
return
E_OUTOFMEMORY
;
}
object
->
IDirect3DRMFrameArray_iface
.
lpVtbl
=
&
Direct3DRMFrameArray_Vtbl
;
object
->
ref
=
1
;
*
obj
=
&
object
->
IDirect3DRMFrameArray_iface
;
return
S_OK
;
}
dlls/d3drm/tests/d3drm.c
View file @
df36fca9
...
...
@@ -433,8 +433,8 @@ static void test_Frame(void)
pArray
=
NULL
;
hr
=
IDirect3DRMFrame_GetChildren
(
pFrameC
,
&
pArray
);
todo_wine
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
todo_wine
ok
(
pArray
!=
NULL
,
"pArray = %p
\n
"
,
pArray
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
ok
(
pArray
!=
NULL
,
"pArray = %p
\n
"
,
pArray
);
if
(
pArray
)
{
count
=
IDirect3DRMFrameArray_GetSize
(
pArray
);
...
...
@@ -475,7 +475,9 @@ static void test_Frame(void)
pArray
=
NULL
;
hr
=
IDirect3DRMFrame_GetChildren
(
pFrameP1
,
&
pArray
);
todo_wine
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
/* In some older version of d3drm, creating IDirect3DRMFrameArray object with GetChildren does not increment refcount of children frames */
ok
((
get_refcount
((
IUnknown
*
)
pFrameC
)
==
3
)
||
broken
(
get_refcount
((
IUnknown
*
)
pFrameC
)
==
2
),
"Invalid refcount. Expected 3 (or 2) got %d
\n
"
,
get_refcount
((
IUnknown
*
)
pFrameC
));
\
if
(
pArray
)
{
count
=
IDirect3DRMFrameArray_GetSize
(
pArray
);
...
...
@@ -483,8 +485,11 @@ static void test_Frame(void)
hr
=
IDirect3DRMFrameArray_GetElement
(
pArray
,
0
,
&
pFrameTmp
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get element (hr = %x)
\n
"
,
hr
);
ok
(
pFrameTmp
==
pFrameC
,
"pFrameTmp = %p
\n
"
,
pFrameTmp
);
ok
((
get_refcount
((
IUnknown
*
)
pFrameC
)
==
4
)
||
broken
(
get_refcount
((
IUnknown
*
)
pFrameC
)
==
3
),
"Invalid refcount. Expected 4 (or 3) got %d
\n
"
,
get_refcount
((
IUnknown
*
)
pFrameC
));
\
IDirect3DRMFrame_Release
(
pFrameTmp
);
ok
((
get_refcount
((
IUnknown
*
)
pFrameC
)
==
3
)
||
broken
(
get_refcount
((
IUnknown
*
)
pFrameC
)
==
2
),
"Invalid refcount. Expected 3 (or 2) got %d
\n
"
,
get_refcount
((
IUnknown
*
)
pFrameC
));
\
IDirect3DRMFrameArray_Release
(
pArray
);
CHECK_REFCOUNT
(
pFrameC
,
2
);
}
pFrameTmp
=
(
void
*
)
0xdeadbeef
;
...
...
@@ -503,7 +508,7 @@ static void test_Frame(void)
pArray
=
NULL
;
hr
=
IDirect3DRMFrame_GetChildren
(
pFrameP2
,
&
pArray
);
todo_wine
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
if
(
pArray
)
{
count
=
IDirect3DRMFrameArray_GetSize
(
pArray
);
...
...
@@ -517,11 +522,12 @@ static void test_Frame(void)
pArray
=
NULL
;
hr
=
IDirect3DRMFrame_GetChildren
(
pFrameP1
,
&
pArray
);
todo_wine
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
if
(
pArray
)
{
count
=
IDirect3DRMFrameArray_GetSize
(
pArray
);
ok
(
count
==
0
,
"count = %u
\n
"
,
count
);
pFrameTmp
=
(
void
*
)
0xdeadbeef
;
hr
=
IDirect3DRMFrameArray_GetElement
(
pArray
,
0
,
&
pFrameTmp
);
ok
(
hr
==
D3DRMERR_BADVALUE
,
"Should have returned D3DRMERR_BADVALUE (hr = %x)
\n
"
,
hr
);
ok
(
pFrameTmp
==
NULL
,
"pFrameTmp = %p
\n
"
,
pFrameTmp
);
...
...
@@ -542,7 +548,7 @@ static void test_Frame(void)
pArray
=
NULL
;
hr
=
IDirect3DRMFrame_GetChildren
(
pFrameP2
,
&
pArray
);
todo_wine
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
if
(
pArray
)
{
count
=
IDirect3DRMFrameArray_GetSize
(
pArray
);
...
...
@@ -561,11 +567,12 @@ static void test_Frame(void)
pArray
=
NULL
;
hr
=
IDirect3DRMFrame_GetChildren
(
pFrameP2
,
&
pArray
);
todo_wine
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
if
(
pArray
)
{
count
=
IDirect3DRMFrameArray_GetSize
(
pArray
);
ok
(
count
==
0
,
"count = %u
\n
"
,
count
);
pFrameTmp
=
(
void
*
)
0xdeadbeef
;
hr
=
IDirect3DRMFrameArray_GetElement
(
pArray
,
0
,
&
pFrameTmp
);
ok
(
hr
==
D3DRMERR_BADVALUE
,
"Should have returned D3DRMERR_BADVALUE (hr = %x)
\n
"
,
hr
);
ok
(
pFrameTmp
==
NULL
,
"pFrameTmp = %p
\n
"
,
pFrameTmp
);
...
...
@@ -588,7 +595,7 @@ static void test_Frame(void)
pArray
=
NULL
;
hr
=
IDirect3DRMFrame_GetChildren
(
pFrameP2
,
&
pArray
);
todo_wine
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
ok
(
hr
==
D3DRM_OK
,
"Cannot get children (hr = %x)
\n
"
,
hr
);
if
(
pArray
)
{
count
=
IDirect3DRMFrameArray_GetSize
(
pArray
);
...
...
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