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
fcf831ac
Commit
fcf831ac
authored
May 07, 2010
by
Gerald Pfeifer
Committed by
Alexandre Julliard
May 10, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32/tests: Remove two variables which are not really used from test_clipping.
parent
11bbb0f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
bitmap.c
dlls/gdi32/tests/bitmap.c
+2
-4
No files found.
dlls/gdi32/tests/bitmap.c
View file @
fcf831ac
...
...
@@ -2810,9 +2810,7 @@ static void test_GdiAlphaBlend(void)
static
void
test_clipping
(
void
)
{
HBITMAP
bmpDst
;
HBITMAP
oldDst
;
HBITMAP
bmpSrc
;
HBITMAP
oldSrc
;
HRGN
hRgn
;
LPVOID
bits
;
BOOL
result
;
...
...
@@ -2830,11 +2828,11 @@ static void test_clipping(void)
bmpDst
=
CreateDIBSection
(
hdcDst
,
&
bmpinfo
,
DIB_RGB_COLORS
,
&
bits
,
NULL
,
0
);
ok
(
bmpDst
!=
NULL
,
"Couldn't create destination bitmap
\n
"
);
oldDst
=
SelectObject
(
hdcDst
,
bmpDst
);
SelectObject
(
hdcDst
,
bmpDst
);
bmpSrc
=
CreateDIBSection
(
hdcSrc
,
&
bmpinfo
,
DIB_RGB_COLORS
,
&
bits
,
NULL
,
0
);
ok
(
bmpSrc
!=
NULL
,
"Couldn't create source bitmap
\n
"
);
oldSrc
=
SelectObject
(
hdcSrc
,
bmpSrc
);
SelectObject
(
hdcSrc
,
bmpSrc
);
result
=
BitBlt
(
hdcDst
,
0
,
0
,
100
,
100
,
hdcSrc
,
100
,
100
,
SRCCOPY
);
ok
(
result
,
"BitBlt failed
\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