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
2a8359d4
Commit
2a8359d4
authored
Nov 22, 2012
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10core: Implement d3d10_device_RSSetScissorRects().
parent
b698e51c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
device.c
dlls/d3d10core/device.c
+12
-2
No files found.
dlls/d3d10core/device.c
View file @
2a8359d4
/*
* Copyright 2008-20
09
Henri Verbeet for CodeWeavers
* Copyright 2008-20
12
Henri Verbeet for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
...
...
@@ -391,7 +391,17 @@ static void STDMETHODCALLTYPE d3d10_device_RSSetViewports(ID3D10Device *iface,
static
void
STDMETHODCALLTYPE
d3d10_device_RSSetScissorRects
(
ID3D10Device
*
iface
,
UINT
rect_count
,
const
D3D10_RECT
*
rects
)
{
FIXME
(
"iface %p, rect_count %u, rects %p
\n
"
,
iface
,
rect_count
,
rects
);
struct
d3d10_device
*
device
=
impl_from_ID3D10Device
(
iface
);
TRACE
(
"iface %p, rect_count %u, rects %p.
\n
"
,
iface
,
rect_count
,
rects
);
if
(
rect_count
>
1
)
FIXME
(
"Multiple scissor rects not implemented.
\n
"
);
if
(
!
rect_count
)
return
;
wined3d_device_set_scissor_rect
(
device
->
wined3d_device
,
rects
);
}
static
void
STDMETHODCALLTYPE
d3d10_device_CopySubresourceRegion
(
ID3D10Device
*
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