microZEUS
The whole stack, hand-drawn.

◄ Wiki / Graphics

A/B validation

Checking your implementation by running the same work through a trusted reference and comparing outputs.

A/B validation pits your code against a known-good reference driver or library on identical inputs, treating any divergence as a bug in the newer side. In graphics this is how a from-scratch renderer proves correctness — its frames must match the reference's, ideally down to the bit. The reference acts as ground truth so you are not just testing against your own assumptions.

See also

  • A/B testRunning the same suite twice — feature off, then on — to measure exactly what the feature changed.
  • bit-exactProducing output identical to a reference down to every last bit.
  • apiVersionA field where a Vulkan driver states which version of the graphics API it supports.

Referenced by

A/B test · apiVersion · bit-exact