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
f5fd7fe3
Commit
f5fd7fe3
authored
Jul 03, 2012
by
Józef Kucia
Committed by
Alexandre Julliard
Jul 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9/tests: Add tests for D3DXLoadVolumeFromFileInMemory.
parent
18a2dde1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
0 deletions
+70
-0
volume.c
dlls/d3dx9_36/tests/volume.c
+70
-0
No files found.
dlls/d3dx9_36/tests/volume.c
View file @
f5fd7fe3
...
...
@@ -22,6 +22,23 @@
#include "wine/test.h"
#include "d3dx9tex.h"
/* 4x4x2 volume map dds, 2 mipmaps */
static
const
unsigned
char
dds_volume_map
[]
=
{
0x44
,
0x44
,
0x53
,
0x20
,
0x7c
,
0x00
,
0x00
,
0x00
,
0x07
,
0x10
,
0x8a
,
0x00
,
0x04
,
0x00
,
0x00
,
0x00
,
0x04
,
0x00
,
0x00
,
0x00
,
0x10
,
0x00
,
0x00
,
0x00
,
0x02
,
0x00
,
0x00
,
0x00
,
0x03
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x20
,
0x00
,
0x00
,
0x00
,
0x04
,
0x00
,
0x00
,
0x00
,
0x44
,
0x58
,
0x54
,
0x33
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x08
,
0x10
,
0x40
,
0x00
,
0x00
,
0x00
,
0x20
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xef
,
0x87
,
0x0f
,
0x78
,
0x05
,
0x05
,
0x50
,
0x50
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xef
,
0x87
,
0x0f
,
0x78
,
0x05
,
0x05
,
0x50
,
0x50
,
0xff
,
0x00
,
0xff
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x2f
,
0x7e
,
0xcf
,
0x79
,
0x01
,
0x54
,
0x5c
,
0x5c
,
0x0f
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x00
,
0x10
,
0x84
,
0xef
,
0x7b
,
0xaa
,
0xab
,
0xab
,
0xab
};
#define check_pixel_4bpp(box, x, y, z, color) _check_pixel_4bpp(__LINE__, box, x, y, z, color)
static
inline
void
_check_pixel_4bpp
(
unsigned
int
line
,
const
D3DLOCKED_BOX
*
box
,
int
x
,
int
y
,
int
z
,
DWORD
expected_color
)
{
...
...
@@ -175,6 +192,58 @@ static void test_D3DXLoadVolumeFromMemory(IDirect3DDevice9 *device)
IDirect3DVolumeTexture9_Release
(
volume_texture
);
}
static
void
test_D3DXLoadVolumeFromFileInMemory
(
IDirect3DDevice9
*
device
)
{
HRESULT
hr
;
D3DBOX
src_box
;
IDirect3DVolume9
*
volume
;
IDirect3DVolumeTexture9
*
volume_texture
;
hr
=
IDirect3DDevice9_CreateVolumeTexture
(
device
,
4
,
4
,
2
,
1
,
D3DUSAGE_DYNAMIC
,
D3DFMT_DXT3
,
D3DPOOL_DEFAULT
,
&
volume_texture
,
NULL
);
if
(
FAILED
(
hr
))
{
skip
(
"Failed to create volume texture
\n
"
);
return
;
}
IDirect3DVolumeTexture9_GetVolumeLevel
(
volume_texture
,
0
,
&
volume
);
hr
=
D3DXLoadVolumeFromFileInMemory
(
volume
,
NULL
,
NULL
,
dds_volume_map
,
sizeof
(
dds_volume_map
),
NULL
,
D3DX_DEFAULT
,
0
,
NULL
);
ok
(
hr
==
D3D_OK
,
"D3DXLoadVolumeFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
D3D_OK
);
hr
=
D3DXLoadVolumeFromFileInMemory
(
volume
,
NULL
,
NULL
,
NULL
,
sizeof
(
dds_volume_map
),
NULL
,
D3DX_DEFAULT
,
0
,
NULL
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"D3DXLoadVolumeFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
D3DERR_INVALIDCALL
);
hr
=
D3DXLoadVolumeFromFileInMemory
(
volume
,
NULL
,
NULL
,
NULL
,
0
,
NULL
,
D3DX_DEFAULT
,
0
,
NULL
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"D3DXLoadVolumeFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
D3DERR_INVALIDCALL
);
hr
=
D3DXLoadVolumeFromFileInMemory
(
volume
,
NULL
,
NULL
,
dds_volume_map
,
0
,
NULL
,
D3DX_DEFAULT
,
0
,
NULL
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"D3DXLoadVolumeFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
D3DERR_INVALIDCALL
);
hr
=
D3DXLoadVolumeFromFileInMemory
(
NULL
,
NULL
,
NULL
,
dds_volume_map
,
sizeof
(
dds_volume_map
),
NULL
,
D3DX_DEFAULT
,
0
,
NULL
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"D3DXLoadVolumeFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
D3DERR_INVALIDCALL
);
set_box
(
&
src_box
,
0
,
0
,
4
,
4
,
0
,
2
);
hr
=
D3DXLoadVolumeFromFileInMemory
(
volume
,
NULL
,
NULL
,
dds_volume_map
,
sizeof
(
dds_volume_map
),
&
src_box
,
D3DX_DEFAULT
,
0
,
NULL
);
ok
(
hr
==
D3D_OK
,
"D3DXLoadVolumeFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
D3D_OK
);
set_box
(
&
src_box
,
0
,
0
,
0
,
0
,
0
,
0
);
hr
=
D3DXLoadVolumeFromFileInMemory
(
volume
,
NULL
,
NULL
,
dds_volume_map
,
sizeof
(
dds_volume_map
),
&
src_box
,
D3DX_DEFAULT
,
0
,
NULL
);
ok
(
hr
==
E_FAIL
,
"D3DXLoadVolumeFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
E_FAIL
);
set_box
(
&
src_box
,
0
,
0
,
5
,
4
,
0
,
2
);
hr
=
D3DXLoadVolumeFromFileInMemory
(
volume
,
NULL
,
NULL
,
dds_volume_map
,
sizeof
(
dds_volume_map
),
&
src_box
,
D3DX_DEFAULT
,
0
,
NULL
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"D3DXLoadVolumeFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
D3DERR_INVALIDCALL
);
set_box
(
&
src_box
,
0
,
0
,
4
,
4
,
0
,
3
);
hr
=
D3DXLoadVolumeFromFileInMemory
(
volume
,
NULL
,
NULL
,
dds_volume_map
,
sizeof
(
dds_volume_map
),
&
src_box
,
D3DX_DEFAULT
,
0
,
NULL
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"D3DXLoadVolumeFromFileInMemory returned %#x, expected %#x
\n
"
,
hr
,
D3DERR_INVALIDCALL
);
IDirect3DVolume9_Release
(
volume
);
IDirect3DVolumeTexture9_Release
(
volume_texture
);
}
START_TEST
(
volume
)
{
HWND
wnd
;
...
...
@@ -210,6 +279,7 @@ START_TEST(volume)
}
test_D3DXLoadVolumeFromMemory
(
device
);
test_D3DXLoadVolumeFromFileInMemory
(
device
);
IDirect3DDevice9_Release
(
device
);
IDirect3D9_Release
(
d3d
);
...
...
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