Not really, the code that 'sets up the GPU to run the OpenGL rendering' is still run on the CPU, and that's what vulkan is doing here. It's not actually writing out pixels, but setting up the GPU command buffer so it knows how to write out which pixels to where, and kicks it off. In some use...