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
16145177
Commit
16145177
authored
Mar 29, 2004
by
Huw Davies
Committed by
Alexandre Julliard
Mar 29, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Honour DIB_PAL_COLORS when the bitmap depths match.
parent
605064a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
dib.c
objects/dib.c
+8
-1
No files found.
objects/dib.c
View file @
16145177
...
...
@@ -433,7 +433,14 @@ INT WINAPI GetDIBits(
/* If the bitmap object already has a dib section at the
same color depth then get the color map from it */
if
(
bmp
->
dib
&&
bmp
->
dib
->
dsBm
.
bmBitsPixel
==
info
->
bmiHeader
.
biBitCount
)
{
GetDIBColorTable
(
hdc
,
0
,
1
<<
info
->
bmiHeader
.
biBitCount
,
info
->
bmiColors
);
if
(
coloruse
==
DIB_RGB_COLORS
)
GetDIBColorTable
(
hdc
,
0
,
1
<<
info
->
bmiHeader
.
biBitCount
,
info
->
bmiColors
);
else
{
WORD
*
index
=
(
WORD
*
)
info
->
bmiColors
;
int
i
;
for
(
i
=
0
;
i
<
1
<<
info
->
bmiHeader
.
biBitCount
;
i
++
,
index
++
)
*
index
=
i
;
}
}
else
{
if
(
info
->
bmiHeader
.
biBitCount
>=
bmp
->
bitmap
.
bmBitsPixel
)
{
...
...
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