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
9cd4df11
Commit
9cd4df11
authored
Oct 18, 1998
by
Turchanov Sergey
Committed by
Alexandre Julliard
Oct 18, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug in DIB_SetImageBits_RLE8 (because 'color' var was WORD, all
COLOREFs had red part zeroed) that made plenty of cyan colors, minor bug fixes, changes to support LR_ flags.
parent
19aa3a79
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
2 deletions
+70
-2
dib.c
objects/dib.c
+70
-2
No files found.
objects/dib.c
View file @
9cd4df11
...
...
@@ -606,7 +606,7 @@ static void DIB_SetImageBits_RLE8( int lines, const BYTE *bits, DWORD width,
BYTE
length
;
/* The length pf a run */
BYTE
color_index
;
/* index into colors[] as read from bits */
BYTE
escape_code
;
/* See enum Rle8_EscapeCodes.*/
WORD
color
;
/* value of colour[color_index] */
int
color
;
/* value of colour[color_index] */
if
(
lines
==
0
)
/* Let's hope this doesn't happen. */
return
;
...
...
@@ -1539,8 +1539,11 @@ INT32 WINAPI GetDIBits32(
/* Transfer color info */
if
(
info
->
bmiHeader
.
biBitCount
<=
8
)
{
int
colors
=
info
->
bmiHeader
.
biClrUsed
;
if
(
!
colors
&&
(
info
->
bmiHeader
.
biBitCount
<=
8
))
colors
=
1
<<
info
->
bmiHeader
.
biBitCount
;
palEntry
=
palette
->
logpalette
.
palPalEntry
;
for
(
i
=
0
;
i
<
info
->
bmiHeader
.
biClrUsed
;
i
++
,
palEntry
++
)
for
(
i
=
0
;
i
<
colors
;
i
++
,
palEntry
++
)
{
if
(
coloruse
==
DIB_RGB_COLORS
)
{
...
...
@@ -2110,3 +2113,68 @@ void DIB_DeleteDIBSection( BITMAPOBJ *bmp )
}
}
/***********************************************************************
* DIB_FixColorsToLoadflags
*
* Change color table entries when LR_LOADTRANSPARENT or LR_LOADMAP3DCOLORS
* are in loadflags
*/
void
DIB_FixColorsToLoadflags
(
BITMAPINFO
*
bmi
,
UINT32
loadflags
,
BYTE
pix
)
{
int
colors
;
COLORREF
c_W
,
c_S
,
c_F
,
c_L
,
c_C
;
int
incr
,
i
;
RGBQUAD
*
ptr
;
if
(
bmi
->
bmiHeader
.
biBitCount
>
8
)
return
;
if
(
bmi
->
bmiHeader
.
biSize
==
sizeof
(
BITMAPINFOHEADER
))
incr
=
4
;
else
if
(
bmi
->
bmiHeader
.
biSize
==
sizeof
(
BITMAPCOREHEADER
))
incr
=
3
;
else
{
WARN
(
bitmap
,
"Wrong bitmap header size!
\n
"
);
return
;
}
colors
=
bmi
->
bmiHeader
.
biClrUsed
;
if
(
!
colors
&&
(
bmi
->
bmiHeader
.
biBitCount
<=
8
))
colors
=
1
<<
bmi
->
bmiHeader
.
biBitCount
;
c_W
=
GetSysColor32
(
COLOR_WINDOW
);
c_S
=
GetSysColor32
(
COLOR_3DSHADOW
);
c_F
=
GetSysColor32
(
COLOR_3DFACE
);
c_L
=
GetSysColor32
(
COLOR_3DLIGHT
);
if
(
loadflags
&
LR_LOADTRANSPARENT
)
{
switch
(
bmi
->
bmiHeader
.
biBitCount
)
{
case
1
:
pix
=
pix
>>
7
;
break
;
case
4
:
pix
=
pix
>>
4
;
break
;
case
8
:
break
;
default:
WARN
(
bitmap
,
"(%d): Unsupported depth
\n
"
,
bmi
->
bmiHeader
.
biBitCount
);
return
;
}
if
(
pix
>=
colors
)
{
WARN
(
bitmap
,
"pixel has color index greater than biClrUsed!
\n
"
);
return
;
}
if
(
loadflags
&
LR_LOADMAP3DCOLORS
)
c_W
=
c_F
;
ptr
=
(
RGBQUAD
*
)((
char
*
)
bmi
->
bmiColors
+
pix
*
incr
);
ptr
->
rgbBlue
=
GetBValue
(
c_W
);
ptr
->
rgbGreen
=
GetGValue
(
c_W
);
ptr
->
rgbRed
=
GetRValue
(
c_W
);
}
if
(
loadflags
&
LR_LOADMAP3DCOLORS
)
for
(
i
=
0
;
i
<
colors
;
i
++
)
{
ptr
=
(
RGBQUAD
*
)((
char
*
)
bmi
->
bmiColors
+
i
*
incr
);
c_C
=
RGB
(
ptr
->
rgbRed
,
ptr
->
rgbGreen
,
ptr
->
rgbBlue
);
if
(
c_C
==
RGB
(
128
,
128
,
128
))
{
ptr
->
rgbRed
=
GetRValue
(
c_S
);
ptr
->
rgbGreen
=
GetGValue
(
c_S
);
ptr
->
rgbBlue
=
GetBValue
(
c_S
);
}
else
if
(
c_C
==
RGB
(
192
,
192
,
192
))
{
ptr
->
rgbRed
=
GetRValue
(
c_F
);
ptr
->
rgbGreen
=
GetGValue
(
c_F
);
ptr
->
rgbBlue
=
GetBValue
(
c_F
);
}
else
if
(
c_C
==
RGB
(
223
,
223
,
223
))
{
ptr
->
rgbRed
=
GetRValue
(
c_L
);
ptr
->
rgbGreen
=
GetGValue
(
c_L
);
ptr
->
rgbBlue
=
GetBValue
(
c_L
);
}
}
}
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