[Mesa-dev] [PATCH 02/14] gallium: Obtain ARB_framebuffer_no_attachment constants

2016-04-02 Thread Edward O'Callaghan
Set default values for the constants required in ARB_framebuffer_no_attachments and obtained the number of layers from ``PIPE_CAP_MAX_TEXTURE_ARRAY_LAYERS``. We also obtain the MaxFramebufferSamples value using a query back to the driver for PIPE_FORMAT_NONE. V.1: Merge if branch predicates into

Re: [Mesa-dev] [PATCH 02/14] gallium: Obtain ARB_framebuffer_no_attachment constants

2016-03-29 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Tue, Mar 29, 2016 at 11:51 AM, Edward O'Callaghan wrote: > Set default values for the constants required in > ARB_framebuffer_no_attachments and obtained the number > of layers from ``PIPE_CAP_MAX_TEXTURE_ARRAY_LAYERS``. > > We also obtain the MaxFramebufferSam

[Mesa-dev] [PATCH 02/14] gallium: Obtain ARB_framebuffer_no_attachment constants

2016-03-29 Thread Edward O'Callaghan
Set default values for the constants required in ARB_framebuffer_no_attachments and obtained the number of layers from ``PIPE_CAP_MAX_TEXTURE_ARRAY_LAYERS``. We also obtain the MaxFramebufferSamples value using a query back to the driver for PIPE_FORMAT_NONE. V.1: Merge if branch predicates into

Re: [Mesa-dev] [PATCH 02/14] gallium: Obtain ARB_framebuffer_no_attachment constants

2016-03-27 Thread Marek Olšák
On Sun, Mar 27, 2016 at 4:38 AM, Edward O'Callaghan wrote: > Set default values for the constants required in > ARB_framebuffer_no_attachments and obtained the number > of layers from ``PIPE_CAP_MAX_TEXTURE_ARRAY_LAYERS``. > > We also obtain the MaxFramebufferSamples value using > a query back to

[Mesa-dev] [PATCH 02/14] gallium: Obtain ARB_framebuffer_no_attachment constants

2016-03-26 Thread Edward O'Callaghan
Set default values for the constants required in ARB_framebuffer_no_attachments and obtained the number of layers from ``PIPE_CAP_MAX_TEXTURE_ARRAY_LAYERS``. We also obtain the MaxFramebufferSamples value using a query back to the driver for PIPE_FORMAT_NONE. Signed-off-by: Edward O'Callaghan --