mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
15 lines
308 B
C
15 lines
308 B
C
/** @file
|
|
This file is part of OpenCanopy, OpenCore GUI.
|
|
|
|
Copyright (c) 2021, Marvin Haeuser. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-3-Clause
|
|
**/
|
|
|
|
#ifndef BLENDING_H_
|
|
#define BLENDING_H_
|
|
|
|
#define RGB_APPLY_OPACITY(Rgba, Opacity) \
|
|
(((Rgba) * (Opacity)) / 0xFF)
|
|
|
|
#endif // BLENDING_H_
|