Re: [Mesa-dev] [PATCH 01/11] mesa: Refactor _mesa_framebuffer_renderbuffer

2016-02-05 Thread Anuj Phogat
On Fri, Feb 5, 2016 at 3:04 PM, Anuj Phogat wrote: > On Fri, Feb 5, 2016 at 1:04 PM, Ian Romanick wrote: >> From: Ian Romanick >> >> This function previously was only used in fbobject.c and contained a >> bunch of API validation. Split the function into >> framebuffer_renderbuffer that is stati

Re: [Mesa-dev] [PATCH 01/11] mesa: Refactor _mesa_framebuffer_renderbuffer

2016-02-05 Thread Anuj Phogat
On Fri, Feb 5, 2016 at 1:04 PM, Ian Romanick wrote: > From: Ian Romanick > > This function previously was only used in fbobject.c and contained a > bunch of API validation. Split the function into > framebuffer_renderbuffer that is static and contains the validation, and > _mesa_framebuffer_rend

[Mesa-dev] [PATCH 01/11] mesa: Refactor _mesa_framebuffer_renderbuffer

2016-02-05 Thread Ian Romanick
From: Ian Romanick This function previously was only used in fbobject.c and contained a bunch of API validation. Split the function into framebuffer_renderbuffer that is static and contains the validation, and _mesa_framebuffer_renderbuffer that is suitable for calling from elsewhere in Mesa (e.