MCPcopy Create free account
hub / github.com/DFHack/dfhack / blendMax

Function blendMax

plugins/rendermax/renderer_light.cpp:259–262  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

257 }
258}
259rgbf blendMax(const rgbf& a,const rgbf& b)
260{
261 return rgbf(std::max(a.r,b.r),std::max(a.g,b.g),std::max(a.b,b.b));
262}
263rgbf blend(const rgbf& a,const rgbf& b)
264{
265 return blendMax(a,b);

Callers 2

blendFunction · 0.85
lightUpCellMethod · 0.85

Calls 1

rgbfClass · 0.85

Tested by

no test coverage detected