does that mean i need a dummy context in my worker thread for the sharing to work?? e.g
Thread1 (main thread):
create sfml window and main context
set main context as active
lock
draw vbo_one
unlock
Thread2 (worker thread):
create a dummy context and set it as active //is this step neccessary for sharing?
lock
update vbo_two and stuff
unlock
would it work if i don't have a dummy context? i.e just start calling gl calls on the worker thread, without creating a dummy context or setting any active context.
regards