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
d04d9940
Commit
d04d9940
authored
May 27, 2012
by
André Hentschel
Committed by
Alexandre Julliard
May 29, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Implement IDirect3DRMLight_[Get|Set]Range.
parent
d2a52d1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
light.c
dlls/d3drm/light.c
+7
-4
No files found.
dlls/d3drm/light.c
View file @
d04d9940
...
@@ -36,6 +36,7 @@ typedef struct {
...
@@ -36,6 +36,7 @@ typedef struct {
LONG
ref
;
LONG
ref
;
D3DRMLIGHTTYPE
type
;
D3DRMLIGHTTYPE
type
;
D3DCOLOR
color
;
D3DCOLOR
color
;
D3DVALUE
range
;
}
IDirect3DRMLightImpl
;
}
IDirect3DRMLightImpl
;
static
inline
IDirect3DRMLightImpl
*
impl_from_IDirect3DRMLight
(
IDirect3DRMLight
*
iface
)
static
inline
IDirect3DRMLightImpl
*
impl_from_IDirect3DRMLight
(
IDirect3DRMLight
*
iface
)
...
@@ -214,9 +215,11 @@ static HRESULT WINAPI IDirect3DRMLightImpl_SetRange(IDirect3DRMLight* iface, D3D
...
@@ -214,9 +215,11 @@ static HRESULT WINAPI IDirect3DRMLightImpl_SetRange(IDirect3DRMLight* iface, D3D
{
{
IDirect3DRMLightImpl
*
This
=
impl_from_IDirect3DRMLight
(
iface
);
IDirect3DRMLightImpl
*
This
=
impl_from_IDirect3DRMLight
(
iface
);
FIXME
(
"(%p/%p)->(%f): stub
\n
"
,
iface
,
This
,
range
);
TRACE
(
"(%p/%p)->(%f)
\n
"
,
iface
,
This
,
range
);
return
E_NOTIMPL
;
This
->
range
=
range
;
return
D3DRM_OK
;
}
}
static
HRESULT
WINAPI
IDirect3DRMLightImpl_SetUmbra
(
IDirect3DRMLight
*
iface
,
D3DVALUE
umbra
)
static
HRESULT
WINAPI
IDirect3DRMLightImpl_SetUmbra
(
IDirect3DRMLight
*
iface
,
D3DVALUE
umbra
)
...
@@ -271,9 +274,9 @@ static D3DVALUE WINAPI IDirect3DRMLightImpl_GetRange(IDirect3DRMLight* iface)
...
@@ -271,9 +274,9 @@ static D3DVALUE WINAPI IDirect3DRMLightImpl_GetRange(IDirect3DRMLight* iface)
{
{
IDirect3DRMLightImpl
*
This
=
impl_from_IDirect3DRMLight
(
iface
);
IDirect3DRMLightImpl
*
This
=
impl_from_IDirect3DRMLight
(
iface
);
FIXME
(
"(%p/%p)->(): stub
\n
"
,
iface
,
This
);
TRACE
(
"(%p/%p)->()
\n
"
,
iface
,
This
);
return
0
;
return
This
->
range
;
}
}
static
D3DVALUE
WINAPI
IDirect3DRMLightImpl_GetUmbra
(
IDirect3DRMLight
*
iface
)
static
D3DVALUE
WINAPI
IDirect3DRMLightImpl_GetUmbra
(
IDirect3DRMLight
*
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