MCPcopy Create free account
hub / github.com/LuxCoreRender/LuxCore / RoundUpPow2

Function RoundUpPow2

include/luxrays/utils/utils.h:217–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215}
216
217template <class T> inline T RoundUpPow2(T v) {
218 v--;
219
220 v |= v >> 1;
221 v |= v >> 2;
222 v |= v >> 4;
223 v |= v >> 8;
224 v |= v >> 16;
225
226 return v+1;
227}
228
229inline unsigned int RoundUpPow2(unsigned int v) {
230 v--;

Callers 3

DrawObjectGUIMethod · 0.85
tilerepository.cppFile · 0.85
StartLockLessMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected