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
f683fe31
Commit
f683fe31
authored
Nov 18, 2010
by
Henri Verbeet
Committed by
Alexandre Julliard
Nov 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d8/tests: Add a test for 0 width / height surface creation.
parent
4ea2d9f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
surface.c
dlls/d3d8/tests/surface.c
+15
-0
No files found.
dlls/d3d8/tests/surface.c
View file @
f683fe31
...
...
@@ -320,6 +320,20 @@ static void test_private_data(IDirect3DDevice8 *device)
ok
(
ref2
==
(
ref
-
1
),
"Object reference is %d, expected %d
\n
"
,
ref2
,
ref
-
1
);
}
static
void
test_surface_dimensions
(
IDirect3DDevice8
*
device
)
{
IDirect3DSurface8
*
surface
;
HRESULT
hr
;
hr
=
IDirect3DDevice8_CreateImageSurface
(
device
,
0
,
1
,
D3DFMT_A8R8G8B8
,
&
surface
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"CreateOffscreenPlainSurface returned %#x, expected D3DERR_INVALIDCALL.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IDirect3DSurface8_Release
(
surface
);
hr
=
IDirect3DDevice8_CreateImageSurface
(
device
,
1
,
0
,
D3DFMT_A8R8G8B8
,
&
surface
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"CreateOffscreenPlainSurface returned %#x, expected D3DERR_INVALIDCALL.
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IDirect3DSurface8_Release
(
surface
);
}
START_TEST
(
surface
)
{
HMODULE
d3d8_handle
;
...
...
@@ -340,6 +354,7 @@ START_TEST(surface)
test_surface_get_container
(
device_ptr
);
test_lockrect_invalid
(
device_ptr
);
test_private_data
(
device_ptr
);
test_surface_dimensions
(
device_ptr
);
refcount
=
IDirect3DDevice8_Release
(
device_ptr
);
ok
(
!
refcount
,
"Device has %u references left
\n
"
,
refcount
);
...
...
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