Could here two process share with vbo?

One process create a vbo, and pass it’s vboId to other process, this process is responsible for drawing. Is it posssible?

Is there a way for processes to communicate drawing?

Afaik it is only possible between threads, but not between processes.

Now, I want to do something like these:

server is responsible for drawing object(vertex, normal, color…) of clients have past in.

Maybe pass primitives with IPC shm or any other way?