Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MyGUI/mygui
/ pixelFloatToByte
Function
pixelFloatToByte
MyGUIEngine/src/msdfgen/core/pixel-conversion.hpp:8–10 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
6
namespace msdfgen {
7
8
inline byte pixelFloatToByte(float x) {
9
return byte(~int(255.5f-255.f*clamp(x)));
10
}
11
12
inline float pixelByteToFloat(byte x) {
13
return 1.f/255.f*float(x);
Callers
8
renderMsdfGlyphs
Method · 0.85
writeTextBitmap
Function · 0.85
writeBinBitmap
Function · 0.85
saveRgba
Function · 0.85
simulate8bit
Function · 0.85
saveBmp
Function · 0.85
pngSave
Function · 0.85
savePng
Function · 0.85
Calls
1
clamp
Function · 0.85
Tested by
no test coverage detected