[DiscordArchive] what browser?
[DiscordArchive] what browser?
Archived author: Balkron • Posted: 2018-11-12T19:43:21.953000+00:00
Original source
few minutes
Archived author: schlumpf • Posted: 2018-11-12T19:47:44.499000+00:00
Original source
I'm still not sure how downloading a multi-mb font is better than a few kb gif for customized logos, but I don't understand modern web dev anyway
Archived author: Deleted User • Posted: 2018-11-12T19:50:56.478000+00:00
Original source
spending a few mb is like thinking about spending 1€ or not
Archived author: Deleted User • Posted: 2018-11-12T19:52:50.342000+00:00
Original source
I am not using €, so I wont know
Archived author: Skarn • Posted: 2018-11-12T19:54:19.473000+00:00
Original source
<@160857905879449600> in short, a few mb is not a big deal anymore
Archived author: Deleted User • Posted: 2018-11-12T19:59:32.210000+00:00
Original source
is this loss?
```cpp
std::vector<std::vector<uint32_t> >
MipMapGenerator::generateMipMaps(const std::vector<uint32_t> &colors, uint32_t width, uint32_t height) {
uint32_t layersW, layersH;
asm("\tbsr %1, %0\n" : "=r"(layersW) : "r"(width));
asm("\tbsr %1, %0\n" : "=r"(layersH) : "r"(height));
uint32_t numLayers = std::min(layersW, layersH);
// ...
```
Archived author: Valaryon • Posted: 2018-11-12T20:01:14.356000+00:00
Original source
<@216273608022949888> Thanks!!!