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
89721c21
Commit
89721c21
authored
Mar 23, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Mar 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Compare the actual formats.
parent
24a4503d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
surface_base.c
dlls/wined3d/surface_base.c
+2
-2
No files found.
dlls/wined3d/surface_base.c
View file @
89721c21
...
...
@@ -1105,7 +1105,7 @@ HRESULT WINAPI IWineD3DBaseSurfaceImpl_Blt(IWineD3DSurface *iface, const RECT *D
dEntry
=
This
->
resource
.
format_desc
;
if
(
Src
)
{
if
(
This
->
resource
.
format_desc
!=
Src
->
resource
.
format_desc
)
if
(
This
->
resource
.
format_desc
->
format
!=
Src
->
resource
.
format_desc
->
format
)
{
Src
=
surface_convert_format
(
Src
,
dEntry
->
format
);
if
(
!
Src
)
{
...
...
@@ -1676,7 +1676,7 @@ HRESULT WINAPI IWineD3DBaseSurfaceImpl_BltFast(IWineD3DSurface *iface, DWORD dst
FIXME
(
"trans arg not supported when a FOURCC surface is involved
\n
"
);
if
(
dstx
||
dsty
)
FIXME
(
"offset for destination surface is not supported
\n
"
);
if
(
Src
->
resource
.
format_desc
!=
This
->
resource
.
format_desc
)
if
(
Src
->
resource
.
format_desc
->
format
!=
This
->
resource
.
format_desc
->
format
)
{
FIXME
(
"FOURCC->FOURCC copy only supported for the same type of surface
\n
"
);
ret
=
WINED3DERR_WRONGTEXTUREFORMAT
;
...
...
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