GPU Performance 101

The increasing photorealism of computer graphics are easy to take for granted, and most people that don't ever have to model and render a scene do exactly that. Keith O’Conor of Romero games (and formerly a 3D technical lead on titles within the Far Cry and Watch_Dogs series made at Ubisoft Montreal) recently wrote up a ‘GPU Performance for Game Artists 101’ reference text – and it remarkably accessible. He covers the GPU pipeline from input assembly, to vertex shading, to rasterization, to pixel shading, through render target output and breaks down how the GPU is processing geometry at each step, which gives you a rudimentary understanding of how a scene comes together in real-time. Here he is on some of the pitfalls of determining render order:

Ideally every scene would be rendered front-to-back (ie. objects closest to the camera first), so that only the foreground pixels get shaded and the rest get killed by the early depth test, eliminating overdraw entirely. But that’s not always possible because you can’t reorder the triangles inside a draw call during rendering. Complex meshes can occlude themselves multiple times, or mesh merging can result in overlapping objects being rendered in the “wrong” order causing overdraw. There’s no easy answer for avoiding these cases, and in the latter case it’s just another thing to take into consideration when deciding whether or not to merge meshes.

Sorry, this is Members Only content. Please Log-in.

Join us today by becoming a Member.

• Archive: Access thousands of projects, scores of essays, interviews and reviews.
• Publish: Post your projects, events, announcements.
• Discuss: Join our Discord for events, open calls and even more projects.
• Education: Tutorials (beginners and advanced) with code examples and downloads.
• Jobs Archive: Find employers who have recruited here in the past (over 1,000 jobs).
• Discounts: Special offers and giveaways (events, books and media).
• Ad-Free Reading: No advertisements or banners of any kind.
• Studios/Organisations: Read more about benefits here.

Read More

/++

/+

One comment on “GPU Performance 101