Re: [Mesa-dev] [PATCH 2/2] wglinfo: query and report multisample information

2014-06-09 Thread Jose Fonseca
- Original Message - > On 06/09/2014 11:38 AM, Jose Fonseca wrote: > > > > > > - Original Message - > >> On 06/09/2014 07:22 AM, Jose Fonseca wrote: > >>> I don't think that OpenGL ICD should advertise multi-sample formats via > >>> the > >>> standard DescribePixelFormat. > >>> http

Re: [Mesa-dev] [PATCH 2/2] wglinfo: query and report multisample information

2014-06-09 Thread Brian Paul
On 06/09/2014 11:38 AM, Jose Fonseca wrote: - Original Message - On 06/09/2014 07:22 AM, Jose Fonseca wrote: I don't think that OpenGL ICD should advertise multi-sample formats via the standard DescribePixelFormat. http://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt states:

Re: [Mesa-dev] [PATCH 2/2] wglinfo: query and report multisample information

2014-06-09 Thread Jose Fonseca
- Original Message - > On 06/09/2014 07:22 AM, Jose Fonseca wrote: > > I don't think that OpenGL ICD should advertise multi-sample formats via the > > standard DescribePixelFormat. > > http://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt states: > > > > Indices are assigned

Re: [Mesa-dev] [PATCH 2/2] wglinfo: query and report multisample information

2014-06-09 Thread Brian Paul
On 06/09/2014 07:22 AM, Jose Fonseca wrote: I don't think that OpenGL ICD should advertise multi-sample formats via the standard DescribePixelFormat. http://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt states: Indices are assigned to pixel formats in the following order:

Re: [Mesa-dev] [PATCH 2/2] wglinfo: query and report multisample information

2014-06-09 Thread Jose Fonseca
I don't think that OpenGL ICD should advertise multi-sample formats via the standard DescribePixelFormat. http://www.opengl.org/registry/specs/ARB/wgl_pixel_format.txt states: Indices are assigned to pixel formats in the following order: 1. Accelerated pixel formats that are displayabl

[Mesa-dev] [PATCH 2/2] wglinfo: query and report multisample information

2014-06-09 Thread Brian Paul
Before, we always reported zeros in the multisample columns of the format list. Since PIXELFORMATDESCRIPTOR doesn't have fields for multisample, we use a new format_info structure to extend that type. --- src/wgl/wglinfo.c | 145 + 1 file chang