Re: [Mesa-dev] [PATCH 01/18] mesa: Store the target index in gl_texture_object

2014-01-23 Thread Brian Paul
On 01/23/2014 03:12 PM, Fredrik Höglund wrote: On Wednesday 22 January 2014, Brian Paul wrote: On 01/21/2014 03:35 PM, Fredrik Höglund wrote: This will be used by glBindTextures() so we don't have to look it up for each texture. --- src/mesa/main/mtypes.h |1 + src/mesa/main/texobj.c |

Re: [Mesa-dev] [PATCH 01/18] mesa: Store the target index in gl_texture_object

2014-01-23 Thread Fredrik Höglund
On Wednesday 22 January 2014, Brian Paul wrote: > On 01/21/2014 03:35 PM, Fredrik Höglund wrote: > > This will be used by glBindTextures() so we don't have to look it up > > for each texture. > > --- > > src/mesa/main/mtypes.h |1 + > > src/mesa/main/texobj.c |2 ++ > > 2 files changed,

Re: [Mesa-dev] [PATCH 01/18] mesa: Store the target index in gl_texture_object

2014-01-22 Thread Brian Paul
On 01/21/2014 03:35 PM, Fredrik Höglund wrote: This will be used by glBindTextures() so we don't have to look it up for each texture. --- src/mesa/main/mtypes.h |1 + src/mesa/main/texobj.c |2 ++ 2 files changed, 3 insertions(+) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mt

[Mesa-dev] [PATCH 01/18] mesa: Store the target index in gl_texture_object

2014-01-21 Thread Fredrik Höglund
This will be used by glBindTextures() so we don't have to look it up for each texture. --- src/mesa/main/mtypes.h |1 + src/mesa/main/texobj.c |2 ++ 2 files changed, 3 insertions(+) diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index c396609..2fe47c4 100644 --- a/src/mesa/