On May 23, 3:51 am, Bruno Babic <a...@b.c> wrote:

> I need to render chess board (with figures on it).
> What I need is advice how to do it as fast as possible?
>
> Worst case scenario is that I render 64 quads, one after another.
> Each quad would have texture, depending on what is on that specific
> field (empty or with figure on it).
>
> Would lists be any faster than this?


Why not render one quad with a checkerboard texture overlaid on it?
The texture would only have to be a 2x2 grid (with some minimum number
of pixels, I imagine) that you could repeat across the quad.

- Chris