Compile fails for me with today's git:
opengl.c: In function 'ConvertAttribWGLtoGLX': opengl.c:676: error: 'GLX_RGBA_FLOAT_BIT_ARB' undeclared (first use in this function) opengl.c:676: error: (Each undeclared identifier is reported only once opengl.c:676: error: for each function it appears in.) opengl.c: In function 'get_render_type_from_fbconfig': opengl.c:845: error: 'GLX_RGBA_FLOAT_BIT_ARB' undeclared (first use in this function) opengl.c:846: error: 'GLX_RGBA_FLOAT_TYPE_ARB' undeclared (first use in this function)
On 30/07/07, James Hawkins truiken@gmail.com wrote:
Compile fails for me with today's git:
opengl.c: In function 'ConvertAttribWGLtoGLX': opengl.c:676: error: 'GLX_RGBA_FLOAT_BIT_ARB' undeclared (first use in this function) opengl.c:676: error: (Each undeclared identifier is reported only once opengl.c:676: error: for each function it appears in.) opengl.c: In function 'get_render_type_from_fbconfig': opengl.c:845: error: 'GLX_RGBA_FLOAT_BIT_ARB' undeclared (first use in this function) opengl.c:846: error: 'GLX_RGBA_FLOAT_TYPE_ARB' undeclared (first use in this function)
Looks like using extensions that aren't necessarily there again, except this time not for wined3d. I don't know if there's any mechanism for that in winex11.drv?
On Monday 30 July 2007 22:28, H. Verbeet wrote:
On 30/07/07, James Hawkins truiken@gmail.com wrote:
Compile fails for me with today's git:
opengl.c: In function 'ConvertAttribWGLtoGLX': opengl.c:676: error: 'GLX_RGBA_FLOAT_BIT_ARB' undeclared (first use in this function) opengl.c:676: error: (Each undeclared identifier is reported only once opengl.c:676: error: for each function it appears in.) opengl.c: In function 'get_render_type_from_fbconfig': opengl.c:845: error: 'GLX_RGBA_FLOAT_BIT_ARB' undeclared (first use in this function) opengl.c:846: error: 'GLX_RGBA_FLOAT_TYPE_ARB' undeclared (first use in this function)
Looks like using extensions that aren't necessarily there again, except this time not for wined3d. I don't know if there's any mechanism for that in winex11.drv?
The extensions are really needed. They are needed for WGL_ARB_pixel_format support. It works fine. I'll add the missing define.
Roderick