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
94ab09a2
Commit
94ab09a2
authored
Sep 24, 2012
by
Józef Kucia
Committed by
Alexandre Julliard
Sep 24, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9/tests: Add a more detailed test for saving a surface to a DDS file.
parent
bf4201ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
surface.c
dlls/d3dx9_36/tests/surface.c
+18
-0
No files found.
dlls/d3dx9_36/tests/surface.c
View file @
94ab09a2
...
...
@@ -1160,6 +1160,24 @@ next_tests:
hr
=
D3DXSaveSurfaceToFileA
(
"saved_surface.dds"
,
D3DXIFF_DDS
,
surface
,
NULL
,
NULL
);
ok
(
hr
==
D3D_OK
,
"D3DXSaveSurfaceToFileA returned %#x, expected %#x
\n
"
,
hr
,
D3D_OK
);
if
(
SUCCEEDED
(
hr
))
{
hr
=
D3DXLoadSurfaceFromFileA
(
surface
,
NULL
,
NULL
,
"saved_surface.dds"
,
NULL
,
D3DX_FILTER_NONE
,
0
,
&
image_info
);
ok
(
hr
==
D3D_OK
,
"Couldn't load saved surface %#x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
ok
(
image_info
.
Width
==
2
,
"Wrong width %u
\n
"
,
image_info
.
Width
);
ok
(
image_info
.
Format
==
D3DFMT_R8G8B8
,
"Wrong format %#x
\n
"
,
image_info
.
Format
);
ok
(
image_info
.
ImageFileFormat
==
D3DXIFF_DDS
,
"Wrong file format %u
\n
"
,
image_info
.
ImageFileFormat
);
hr
=
IDirect3DSurface9_LockRect
(
surface
,
&
lock_rect
,
NULL
,
D3DLOCK_READONLY
);
ok
(
hr
==
D3D_OK
,
"Couldn't lock surface %#x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
{
ok
(
!
memcmp
(
lock_rect
.
pBits
,
pixels
,
pitch
),
"Pixel data mismatch in first row
\n
"
);
ok
(
!
memcmp
((
BYTE
*
)
lock_rect
.
pBits
+
lock_rect
.
Pitch
,
pixels
+
pitch
,
pitch
),
"Pixel data mismatch in second row
\n
"
);
IDirect3DSurface9_UnlockRect
(
surface
);
}
}
}
else
skip
(
"Couldn't save surface
\n
"
);
hr
=
D3DXSaveSurfaceToFileA
(
"saved_surface"
,
D3DXIFF_PFM
+
1
,
surface
,
NULL
,
NULL
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"D3DXSaveSurfaceToFileA returned %#x, expected %#x
\n
"
,
hr
,
D3DERR_INVALIDCALL
);
...
...
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