Re: [Mesa-dev] [PATCH 02/18] mesa: Add a _BoundTextures field in gl_texture_unit

2014-01-22 Thread Brian Paul
On 01/21/2014 03:35 PM, Fredrik Höglund wrote: This will be used by glBindTextures() when unbinding textures, to avoid having to loop over all the targets. --- src/mesa/main/mtypes.h |3 +++ src/mesa/main/texobj.c |6 ++ src/mesa/main/texstate.c |3 +++ 3 files changed, 1

[Mesa-dev] [PATCH 02/18] mesa: Add a _BoundTextures field in gl_texture_unit

2014-01-21 Thread Fredrik Höglund
This will be used by glBindTextures() when unbinding textures, to avoid having to loop over all the targets. --- src/mesa/main/mtypes.h |3 +++ src/mesa/main/texobj.c |6 ++ src/mesa/main/texstate.c |3 +++ 3 files changed, 12 insertions(+) diff --git a/src/mesa/main/mtypes.h