Practice free →
Home › In modern GPU rendering, EARLY-Z (or 'Hi-Z') opt…

In modern GPU rendering, EARLY-Z (or 'Hi-Z') optimisation rejects fragments before which stage?

ACPU-side draw-call submission
BVertex shader execution stage
CFragment shader execution stage
DBuffer allocation in VRAM
Answer & Solution
Correct answer: C. Fragment shader execution stage
Khronos / NVIDIA docs: when shader doesn't write depth, GPU can run depth test before the fragment shader, skipping occluded pixels entirely. Big win.
Solve this in the app — Practice practice & 24k+ MCQs →
Related questions