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
5609f062
Commit
5609f062
authored
Sep 19, 2011
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 20, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Dump the WINEDDBLTFX structure in wined3d_surface_blt().
parent
4228bbc5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
surface.c
dlls/wined3d/surface.c
+31
-0
No files found.
dlls/wined3d/surface.c
View file @
5609f062
...
...
@@ -1481,6 +1481,37 @@ HRESULT CDECL wined3d_surface_blt(struct wined3d_surface *dst_surface, const REC
flags
,
fx
,
debug_d3dtexturefiltertype
(
filter
));
TRACE
(
"Usage is %s.
\n
"
,
debug_d3dusage
(
dst_surface
->
resource
.
usage
));
if
(
fx
)
{
TRACE
(
"dwSize %#x.
\n
"
,
fx
->
dwSize
);
TRACE
(
"dwDDFX %#x.
\n
"
,
fx
->
dwDDFX
);
TRACE
(
"dwROP %#x.
\n
"
,
fx
->
dwROP
);
TRACE
(
"dwDDROP %#x.
\n
"
,
fx
->
dwDDROP
);
TRACE
(
"dwRotationAngle %#x.
\n
"
,
fx
->
dwRotationAngle
);
TRACE
(
"dwZBufferOpCode %#x.
\n
"
,
fx
->
dwZBufferOpCode
);
TRACE
(
"dwZBufferLow %#x.
\n
"
,
fx
->
dwZBufferLow
);
TRACE
(
"dwZBufferHigh %#x.
\n
"
,
fx
->
dwZBufferHigh
);
TRACE
(
"dwZBufferBaseDest %#x.
\n
"
,
fx
->
dwZBufferBaseDest
);
TRACE
(
"dwZDestConstBitDepth %#x.
\n
"
,
fx
->
dwZDestConstBitDepth
);
TRACE
(
"lpDDSZBufferDest %p.
\n
"
,
fx
->
u1
.
lpDDSZBufferDest
);
TRACE
(
"dwZSrcConstBitDepth %#x.
\n
"
,
fx
->
dwZSrcConstBitDepth
);
TRACE
(
"lpDDSZBufferSrc %p.
\n
"
,
fx
->
u2
.
lpDDSZBufferSrc
);
TRACE
(
"dwAlphaEdgeBlendBitDepth %#x.
\n
"
,
fx
->
dwAlphaEdgeBlendBitDepth
);
TRACE
(
"dwAlphaEdgeBlend %#x.
\n
"
,
fx
->
dwAlphaEdgeBlend
);
TRACE
(
"dwReserved %#x.
\n
"
,
fx
->
dwReserved
);
TRACE
(
"dwAlphaDestConstBitDepth %#x.
\n
"
,
fx
->
dwAlphaDestConstBitDepth
);
TRACE
(
"lpDDSAlphaDest %p.
\n
"
,
fx
->
u3
.
lpDDSAlphaDest
);
TRACE
(
"dwAlphaSrcConstBitDepth %#x.
\n
"
,
fx
->
dwAlphaSrcConstBitDepth
);
TRACE
(
"lpDDSAlphaSrc %p.
\n
"
,
fx
->
u4
.
lpDDSAlphaSrc
);
TRACE
(
"lpDDSPattern %p.
\n
"
,
fx
->
u5
.
lpDDSPattern
);
TRACE
(
"ddckDestColorkey {%#x, %#x}.
\n
"
,
fx
->
ddckDestColorkey
.
dwColorSpaceLowValue
,
fx
->
ddckDestColorkey
.
dwColorSpaceHighValue
);
TRACE
(
"ddckSrcColorkey {%#x, %#x}.
\n
"
,
fx
->
ddckSrcColorkey
.
dwColorSpaceLowValue
,
fx
->
ddckSrcColorkey
.
dwColorSpaceHighValue
);
}
if
((
dst_surface
->
flags
&
SFLAG_LOCKED
)
||
(
src_surface
&&
(
src_surface
->
flags
&
SFLAG_LOCKED
)))
{
WARN
(
"Surface is busy, returning WINEDDERR_SURFACEBUSY.
\n
"
);
...
...
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