Re: [Mesa-dev] [PATCH 3/7] mesa: implement glBindTextures()

2014-01-13 Thread Ian Romanick
On 01/07/2014 12:05 AM, Fredrik Höglund wrote: On Friday 03 January 2014, Marek Olšák wrote: On Fri, Jan 3, 2014 at 2:04 PM, Marek Olšák mar...@gmail.com wrote: On Fri, Jan 3, 2014 at 1:27 AM, Maxence Le Doré maxence.led...@gmail.com wrote: --- src/mesa/main/texobj.c | 52

Re: [Mesa-dev] [PATCH 3/7] mesa: implement glBindTextures()

2014-01-07 Thread Fredrik Höglund
On Friday 03 January 2014, Marek Olšák wrote: On Fri, Jan 3, 2014 at 2:04 PM, Marek Olšák mar...@gmail.com wrote: On Fri, Jan 3, 2014 at 1:27 AM, Maxence Le Doré maxence.led...@gmail.com wrote: --- src/mesa/main/texobj.c | 52 ++

Re: [Mesa-dev] [PATCH 3/7] mesa: implement glBindTextures()

2014-01-07 Thread Maxence Le Doré
Thanks Fredrik, I was nearly sure this was ok from what I read of the specs. And you're also right again : I totally forget a case where a texture has never been bound ! 2014/1/7 Maxence Le Doré maxence.led...@gmail.com: Thanks Fredrik, I was nearly sure this was ok from what I read of the

Re: [Mesa-dev] [PATCH 3/7] mesa: implement glBindTextures()

2014-01-03 Thread Marek Olšák
On Fri, Jan 3, 2014 at 1:27 AM, Maxence Le Doré maxence.led...@gmail.com wrote: --- src/mesa/main/texobj.c | 52 ++ src/mesa/main/texobj.h | 3 +++ 2 files changed, 55 insertions(+) diff --git a/src/mesa/main/texobj.c

Re: [Mesa-dev] [PATCH 3/7] mesa: implement glBindTextures()

2014-01-03 Thread Marek Olšák
On Fri, Jan 3, 2014 at 2:04 PM, Marek Olšák mar...@gmail.com wrote: On Fri, Jan 3, 2014 at 1:27 AM, Maxence Le Doré maxence.led...@gmail.com wrote: --- src/mesa/main/texobj.c | 52 ++ src/mesa/main/texobj.h | 3 +++ 2 files changed, 55

[Mesa-dev] [PATCH 3/7] mesa: implement glBindTextures()

2014-01-02 Thread Maxence Le Doré
--- src/mesa/main/texobj.c | 52 ++ src/mesa/main/texobj.h | 3 +++ 2 files changed, 55 insertions(+) diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c index bddbc50..66e2fb0 100644 --- a/src/mesa/main/texobj.c +++