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
4f9814c5
Commit
4f9814c5
authored
Jan 02, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10core: Implement d3d10_rasterizer_state_GetDesc().
parent
8f32358b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
5 deletions
+15
-5
d3d10core_private.h
dlls/d3d10core/d3d10core_private.h
+4
-1
device.c
dlls/d3d10core/device.c
+4
-2
state.c
dlls/d3d10core/state.c
+7
-2
No files found.
dlls/d3d10core/d3d10core_private.h
View file @
4f9814c5
...
...
@@ -247,9 +247,12 @@ struct d3d10_rasterizer_state
{
ID3D10RasterizerState
ID3D10RasterizerState_iface
;
LONG
refcount
;
D3D10_RASTERIZER_DESC
desc
;
};
HRESULT
d3d10_rasterizer_state_init
(
struct
d3d10_rasterizer_state
*
state
)
DECLSPEC_HIDDEN
;
HRESULT
d3d10_rasterizer_state_init
(
struct
d3d10_rasterizer_state
*
state
,
const
D3D10_RASTERIZER_DESC
*
desc
)
DECLSPEC_HIDDEN
;
struct
d3d10_rasterizer_state
*
unsafe_impl_from_ID3D10RasterizerState
(
ID3D10RasterizerState
*
iface
)
DECLSPEC_HIDDEN
;
/* ID3D10SamplerState */
...
...
dlls/d3d10core/device.c
View file @
4f9814c5
...
...
@@ -1480,6 +1480,9 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateRasterizerState(ID3D10Device
TRACE
(
"iface %p, desc %p, rasterizer_state %p.
\n
"
,
iface
,
desc
,
rasterizer_state
);
if
(
!
desc
)
return
E_INVALIDARG
;
object
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
(
*
object
));
if
(
!
object
)
{
...
...
@@ -1487,8 +1490,7 @@ static HRESULT STDMETHODCALLTYPE d3d10_device_CreateRasterizerState(ID3D10Device
return
E_OUTOFMEMORY
;
}
hr
=
d3d10_rasterizer_state_init
(
object
);
if
(
FAILED
(
hr
))
if
(
FAILED
(
hr
=
d3d10_rasterizer_state_init
(
object
,
desc
)))
{
WARN
(
"Failed to initialize rasterizer state, hr %#x.
\n
"
,
hr
);
HeapFree
(
GetProcessHeap
(),
0
,
object
);
...
...
dlls/d3d10core/state.c
View file @
4f9814c5
...
...
@@ -392,7 +392,11 @@ static HRESULT STDMETHODCALLTYPE d3d10_rasterizer_state_SetPrivateDataInterface(
static
void
STDMETHODCALLTYPE
d3d10_rasterizer_state_GetDesc
(
ID3D10RasterizerState
*
iface
,
D3D10_RASTERIZER_DESC
*
desc
)
{
FIXME
(
"iface %p, desc %p stub!
\n
"
,
iface
,
desc
);
struct
d3d10_rasterizer_state
*
state
=
impl_from_ID3D10RasterizerState
(
iface
);
TRACE
(
"iface %p, desc %p.
\n
"
,
iface
,
desc
);
*
desc
=
state
->
desc
;
}
static
const
struct
ID3D10RasterizerStateVtbl
d3d10_rasterizer_state_vtbl
=
...
...
@@ -410,10 +414,11 @@ static const struct ID3D10RasterizerStateVtbl d3d10_rasterizer_state_vtbl =
d3d10_rasterizer_state_GetDesc
,
};
HRESULT
d3d10_rasterizer_state_init
(
struct
d3d10_rasterizer_state
*
state
)
HRESULT
d3d10_rasterizer_state_init
(
struct
d3d10_rasterizer_state
*
state
,
const
D3D10_RASTERIZER_DESC
*
desc
)
{
state
->
ID3D10RasterizerState_iface
.
lpVtbl
=
&
d3d10_rasterizer_state_vtbl
;
state
->
refcount
=
1
;
state
->
desc
=
*
desc
;
return
S_OK
;
}
...
...
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