DDNet documentation
Toggle main menu visibility
Loading...
Searching...
No Matches
log_color.h
Go to the documentation of this file.
1
#ifndef BASE_LOG_COLOR_H
2
#define BASE_LOG_COLOR_H
3
4
#include "
color.h
"
5
#include "
log.h
"
6
7
#include <cstdint>
8
9
template
<>
10
constexpr
LOG_COLOR
color_cast
(
const
ColorRGBA
&rgb)
11
{
12
return
LOG_COLOR
{
13
.r = (uint8_t)(rgb.r * 255.0f + 0.5f),
14
.g = (uint8_t)(rgb.g * 255.0f + 0.5f),
15
.b = (uint8_t)(rgb.b * 255.0f + 0.5f),
16
};
17
}
18
19
#endif
// BASE_LOG_COLOR_H
ColorRGBA
Definition
color.h:183
color.h
color_cast
constexpr T color_cast(const F &)=delete
log.h
LOG_COLOR
Definition
log.h:17
src
base
log_color.h
Generated by
1.18.0