Re: [Mesa-dev] [PATCH 01/13] meta: Convert _mesa_meta_bind_fbo_image to take a gl_framebuffer instead of a GL API handle

2016-02-11 Thread Pohjolainen, Topi
On Thu, Feb 11, 2016 at 08:50:51PM +0200, Pohjolainen, Topi wrote: > On Wed, Feb 10, 2016 at 10:13:11PM -0800, Ian Romanick wrote: > > From: Ian Romanick > > > > Also change the name of the function to > > _mesa_meta_framebuffer_texture_image. The function is basically a > > wrapper around _mesa

Re: [Mesa-dev] [PATCH 01/13] meta: Convert _mesa_meta_bind_fbo_image to take a gl_framebuffer instead of a GL API handle

2016-02-11 Thread Pohjolainen, Topi
On Wed, Feb 10, 2016 at 10:13:11PM -0800, Ian Romanick wrote: > From: Ian Romanick > > Also change the name of the function to > _mesa_meta_framebuffer_texture_image. The function is basically a > wrapper around _mesa_framebuffer_texture (which is used to implement > glFramebufferTexture1D and f

[Mesa-dev] [PATCH 01/13] meta: Convert _mesa_meta_bind_fbo_image to take a gl_framebuffer instead of a GL API handle

2016-02-10 Thread Ian Romanick
From: Ian Romanick Also change the name of the function to _mesa_meta_framebuffer_texture_image. The function is basically a wrapper around _mesa_framebuffer_texture (which is used to implement glFramebufferTexture1D and friends), so it makes sense for it's name to be similar to that. The next