Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
064e918c
Commit
064e918c
authored
Apr 12, 2004
by
Olivier Teulière
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* skins/win32/win32_graphics.cpp: Fix for alphablending (thanks AsMaX)
parent
2a19321e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
modules/gui/skins2/win32/win32_graphics.cpp
modules/gui/skins2/win32/win32_graphics.cpp
+6
-2
No files found.
modules/gui/skins2/win32/win32_graphics.cpp
View file @
064e918c
...
...
@@ -136,8 +136,12 @@ void Win32Graphics::drawBitmap( const GenericBitmap &rBitmap,
uint8_t
a
=
*
(
pBmpData
++
);
// Draw the pixel
((
UINT32
*
)
pBits
)[
x
+
y
*
width
]
=
(
a
<<
24
)
|
(
r
<<
16
)
|
(
g
<<
8
)
|
b
;
// Note: the colours are multiplied by a/255, because of the
// algorithm used by Windows for the AlphaBlending
((
UINT32
*
)
pBits
)[
x
+
y
*
width
]
=
(
a
<<
24
)
|
(((
r
*
a
)
>>
8
)
<<
16
)
|
(((
g
*
a
)
>>
8
)
<<
8
)
|
((
b
*
a
)
>>
8
);
if
(
a
>
0
)
{
...
...
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