Neomex
Neomex

Reputation: 1

Speed of rendering 2D graphics in D3D

Which way to render 2D graphics is faster in d3d? Using sprites or texturing quads/other polys?

Upvotes: 0

Views: 446

Answers (1)

Martin Stone
Martin Stone

Reputation: 13007

By using sprites do you mean D3DXCreateSprite etc? This almost certainly uses textured quads under the hood, and batches up the draw calls to make things fast. I'd suggest using this and only investigate manually creating quads if this isn't sufficiently fast.

Upvotes: 2

Related Questions