Creating GL-Sharing context with SDL

Hi,

I’d like to create a cross-platform program with CL-GL-Interoperability and SDL.
To create a shared context I need to give the display within the context properties to clCreateContext. My problem is, that

glXGetCurrentDisplay 

is not cross-platform. Is there a SDL-equivalent?
I thougt that the return value of SDL_CreateWindow is my parameter but it is not the same as glXGetCurrentDisplay.
However, SDL_GL_CreateContext is the same as glXGetCurrentContext().

Someone has ideas?

I’m not familiar with SDL but will point out that while glXGetCurrentDisplay isn’t crossplatform, neither is its use in clCreateContext - you need to pass in either an (X Display, GLX Context handle) or (WGL hDC, WGL context handle) or (EGLDisplay, EGLContext handle) or other attributes to context creation, depending on the window system OpenGL is running within. So unless SDL has queries to return exactly that
information across platforms, you may need to poke at its internals a bit.

In SDL there is SDL_GetWMInfo to get the window bits… but to get the GL context via SDL, there is no call… you will need to have the #ifdef bits in your code…