Shader Components: Modular and High Performance Shader Development

Yong He, CMU
Theresa Foley, NVIDIA
Teguh Hofstee, CMU
Haomin Long, Tsinghua
Kayvon Fatahalian, CMU

ACM Transactions on Graphics, 36(4), Aug 2017
Proceedings of ACM SIGGRAPH 2017

Abstract

Modern game engines seek to balance the conflicting goals of high rendering performance and productive software development. To improve CPU performance, the most recent generation of real-time graphics APIs provide new primitives for performing efficient batch updates to shader parameters. However, modern game engines featuring large shader codebases have struggled to take advantage of these benefits. The problem is that even though shader parameters can be organized into efficient modules bound to the pipeline at various frequencies, modern shading languages lack corresponding primitives to organize shader logic (requiring these parameters) into modules as well. The result is that complex shaders are typically compiled to use a monolithic block of parameters, defeating the design, and performance benefits, of the new parameter binding API. In this paper we propose to resolve this mismatch by introducing shader components, a first-class unit of modularity in a shader program that encapsulates a unit of shader logic and the parameters that must be bound when that logic is in use. We show that by building sophisticated shaders out of components, we can retain essential aspects of performance (static specialization of the shader logic in use and efficient update of parameters at component granularity) while maintaining the modular shader code structure that is desirable in today's high-end game engines.

Paper

Download Paper (12 MB)

In the SIGGRAPH 2017 paper, shader components were implemented using an extension to the Spire shading language. However, we recommend that you read our more recent SIGGRAPH 2018 paper on implementing shader components using Slang. Slang is in active development in conjunction with NVIDIA Research.

Code

Slang Code on Github

(Old) Spire Code on Github