free performance: autobatching in my SFML fork -- Vittorio Romeo
This article shows how a very simple automatic batching strategy can be applied on top of SFML without affecting the library API, resulting in free performance for the end user!
free performance: autobatching in my SFML fork
by Vittorio Romeo
From the article:
In one of my previous articles, I discussed the design and implementation of the batching system in my fork of SFML. Wouldn’t it be nice if drawables were automatically batched, whenever possible?

Integer division is one of the most expensive operations in C++, but when the divisor is known at compile time, the compiler can optimize it significantly. This post explores different approaches—using templates, lambda expressions, and template metaprogramming—to speed up division while maintaining clean and efficient code.
Bjarne Stroustrup, creator of C++, is advocating for the adoption of guideline-enforcing profiles to enhance the language's safety and security.
In this article, we’ll see details of
A customer attempted to log exceptions using a
Network packets can be represented as bit fields. Wu Yongwei explores some issues to be aware of and offers solutions.