Coco Nvg May 2026

git clone https://gitlab.freedesktop.org/mesa/coco-nvg.git cd coco-nvg meson setup builddir -Dbackend=nvg ninja -C builddir If you get missing headers ( coco/runtime.h ), you may need to fetch submodules:

Example (using a known working fork):

export COCO_BACKEND=nvg export COCO_NVG_DEVICE=0 # first GPU export LIBCOCO_PATH=/path/to/coco-nvg/builddir LD_LIBRARY_PATH=$LIBCOCO_PATH ./my_coco_program coco nvg

sudo apt install build-essential meson ninja-build pkg-config \ libdrm-dev libdrm-nouveau2 mesa-common-dev libclang-dev \ llvm-dev python3 libpciaccess-dev Coco is a meta-framework. The NVG backend is part of coco-nvg (often hosted on GitLab/freedesktop or personal repos). There is no official release; you must clone and build. git clone https://gitlab