This is a minimal example of mesh compression via vertex attribute quatization. The positions of the triangle on the left are encoded as standard 32-bit floats. The positions of triangle on the right are quantized to 16-bit unsigned ints and decoded on the GPU via a single matrix multiplication. The technique is descriibed here. Source code is available here.