Mesh shaders add a programmable geometry path. Using it still requires a suitable driver, supported feature bits and application code that enables those features.

What changed, and what has shipped since
The Mesa 26.2.0 notes list VK_EXT_mesh_shader for NVK and OpenCL 3.1 for several Rusticl drivers. They also warn that reported API versions depend on the actual driver. Mesa 26.2.2, released September 2, is now a subsequent bug-fix release; the August 26.2.0 launch should not be treated as the latest maintenance state.
NVK is Mesa’s Vulkan driver for NVIDIA hardware. Its driver documentation distinguishes supported hardware and experimental switches. Installing a Mesa package does not prove that an application selected NVK rather than another installed Vulkan implementation.
There are several gates before a mesh draw
The mesh-shader extension provides programmable generation of geometric primitives. The feature structure separately describes meshShader, taskShader and additional capabilities. Applications query what is supported, then enable the features they require when creating the logical device.
Our diagram follows those gates: select the intended GPU and driver, enumerate the extension, query feature bits, then enable the required path. A missing optional task-shader capability need not invalidate every mesh-only design. Conversely, seeing the extension name does not establish every related capability or a successful game launch.
Culling geometry is work too
The former description said invisible geometry could be removed before it costs anything. A culling algorithm itself consumes instructions and data accesses. Its benefit depends on how much later work it avoids and how the workload is organized.
For an evaluation, keep scene, resolution and rendering settings fixed. Compare visual output first, then frame-time distribution and compilation behavior. An application can gain compatibility while remaining limited by another feature, a driver bug or CPU-side work. We have not measured an NVK game here.
Record the selected physical device, driver version, enabled extensions and any experimental environment settings alongside the result. That makes a report useful to another reader with a similar GPU; “Mesa 26.2 installed” alone is too little to reproduce it.
September 8: add 26.2.2 availability, distinguish extension support and enabled feature bits, and remove zero-cost culling and universal driver-version assumptions.