microZEUS
The whole stack, hand-drawn.

◄ Wiki / Graphics

cube map

A texture made of six square images arranged as the faces of a cube, sampled by pointing a direction outward from the center.

Instead of looking up a color by 2D coordinates, a cube map is sampled with a 3D direction vector, and the hardware picks the right face and spot automatically. This is the standard trick for environment reflections and skyboxes, where you want a full surround image. microZeus supports sampling them from just-in-time compiled shaders.

See also

  • descriptorA small handle that tells a shader where to find a resource like a texture or buffer.
  • draw callA single command telling the GPU to render a batch of geometry.
  • dynamic renderingA Vulkan feature that lets you render without pre-declaring a rigid render-pass object first.

Referenced by

descriptor · descriptor / descriptor set