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
f2459e55
Commit
f2459e55
authored
Apr 03, 2017
by
Henri Verbeet
Committed by
Alexandre Julliard
Apr 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Implement cpu_blit_blit_surface().
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5e406953
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
5 deletions
+36
-5
surface.c
dlls/wined3d/surface.c
+36
-5
No files found.
dlls/wined3d/surface.c
View file @
f2459e55
...
@@ -2712,10 +2712,19 @@ static BOOL cpu_blit_supported(const struct wined3d_gl_info *gl_info,
...
@@ -2712,10 +2712,19 @@ static BOOL cpu_blit_supported(const struct wined3d_gl_info *gl_info,
const
RECT
*
src_rect
,
DWORD
src_usage
,
enum
wined3d_pool
src_pool
,
const
struct
wined3d_format
*
src_format
,
const
RECT
*
src_rect
,
DWORD
src_usage
,
enum
wined3d_pool
src_pool
,
const
struct
wined3d_format
*
src_format
,
const
RECT
*
dst_rect
,
DWORD
dst_usage
,
enum
wined3d_pool
dst_pool
,
const
struct
wined3d_format
*
dst_format
)
const
RECT
*
dst_rect
,
DWORD
dst_usage
,
enum
wined3d_pool
dst_pool
,
const
struct
wined3d_format
*
dst_format
)
{
{
if
(
blit_op
==
WINED3D_BLIT_OP_COLOR_FILL
||
blit_op
==
WINED3D_BLIT_OP_DEPTH_FILL
)
switch
(
blit_op
)
return
TRUE
;
{
case
WINED3D_BLIT_OP_COLOR_BLIT
:
case
WINED3D_BLIT_OP_COLOR_BLIT_ALPHATEST
:
case
WINED3D_BLIT_OP_COLOR_BLIT_CKEY
:
case
WINED3D_BLIT_OP_COLOR_FILL
:
case
WINED3D_BLIT_OP_DEPTH_FILL
:
case
WINED3D_BLIT_OP_DEPTH_BLIT
:
return
TRUE
;
return
FALSE
;
default:
return
FALSE
;
}
}
}
static
HRESULT
surface_cpu_blt_compressed
(
const
BYTE
*
src_data
,
BYTE
*
dst_data
,
static
HRESULT
surface_cpu_blt_compressed
(
const
BYTE
*
src_data
,
BYTE
*
dst_data
,
...
@@ -3378,8 +3387,30 @@ static void cpu_blit_blit_surface(struct wined3d_device *device, enum wined3d_bl
...
@@ -3378,8 +3387,30 @@ static void cpu_blit_blit_surface(struct wined3d_device *device, enum wined3d_bl
const
RECT
*
src_rect
,
struct
wined3d_surface
*
dst_surface
,
DWORD
dst_location
,
const
RECT
*
dst_rect
,
const
RECT
*
src_rect
,
struct
wined3d_surface
*
dst_surface
,
DWORD
dst_location
,
const
RECT
*
dst_rect
,
const
struct
wined3d_color_key
*
color_key
,
enum
wined3d_texture_filter_type
filter
)
const
struct
wined3d_color_key
*
color_key
,
enum
wined3d_texture_filter_type
filter
)
{
{
/* FIXME: Remove error returns from surface_blt_cpu. */
struct
wined3d_box
dst_box
=
{
dst_rect
->
left
,
dst_rect
->
top
,
dst_rect
->
right
,
dst_rect
->
bottom
,
0
,
1
};
ERR
(
"Blit method not implemented by cpu_blit.
\n
"
);
struct
wined3d_box
src_box
=
{
src_rect
->
left
,
src_rect
->
top
,
src_rect
->
right
,
src_rect
->
bottom
,
0
,
1
};
unsigned
int
dst_sub_resource_idx
=
surface_get_sub_resource_idx
(
dst_surface
);
unsigned
int
src_sub_resource_idx
=
surface_get_sub_resource_idx
(
src_surface
);
struct
wined3d_texture
*
dst_texture
=
dst_surface
->
container
;
struct
wined3d_texture
*
src_texture
=
src_surface
->
container
;
struct
wined3d_blt_fx
fx
;
DWORD
flags
=
0
;
memset
(
&
fx
,
0
,
sizeof
(
fx
));
if
(
op
==
WINED3D_BLIT_OP_COLOR_BLIT_ALPHATEST
)
{
flags
|=
WINED3D_BLT_ALPHA_TEST
;
}
else
if
(
op
==
WINED3D_BLIT_OP_COLOR_BLIT_CKEY
)
{
flags
|=
WINED3D_BLT_SRC_CKEY_OVERRIDE
|
WINED3D_BLT_FX
;
fx
.
src_color_key
=
*
color_key
;
}
if
(
FAILED
(
surface_cpu_blt
(
dst_texture
,
dst_sub_resource_idx
,
&
dst_box
,
src_texture
,
src_sub_resource_idx
,
&
src_box
,
flags
,
&
fx
,
filter
)))
ERR
(
"Failed to blit.
\n
"
);
wined3d_texture_load_location
(
dst_texture
,
dst_sub_resource_idx
,
context
,
dst_location
);
}
}
const
struct
wined3d_blitter_ops
cpu_blit
=
const
struct
wined3d_blitter_ops
cpu_blit
=
...
...
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