1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Prefer immutable texture storage when available

This commit is contained in:
sfan5 2025-04-06 20:25:03 +02:00
parent 427a7e4998
commit d5bf094f9a
7 changed files with 42 additions and 24 deletions

View file

@ -93,17 +93,6 @@ inline void memset16(void *dest, const u16 value, size_t bytesize)
}
}
// integer log2 of an integer. returning 0 as denormal
static inline s32 s32_log2_s32(u32 in)
{
s32 ret = 0;
while (in > 1) {
in >>= 1;
ret++;
}
return ret;
}
// ------------------ Video---------------------------------------
/*!
Pixel = dest * ( 1 - alpha ) + source * alpha