Re: [Mesa-dev] [PATCH 1/6] mesa: move check for no-op glFrontFace call earlier

2015-07-20 Thread Brian Paul
On 07/20/2015 12:27 PM, Ian Romanick wrote: Patches 1, 2, and 3 are Reviewed-by: Ian Romanick The other patches look correct too, but the whole series is optimizations, so do you have any before / after performance data? No, I don't. I happened across these while looking at apitraces of Go

Re: [Mesa-dev] [PATCH 1/6] mesa: move check for no-op glFrontFace call earlier

2015-07-20 Thread Ian Romanick
Patches 1, 2, and 3 are Reviewed-by: Ian Romanick The other patches look correct too, but the whole series is optimizations, so do you have any before / after performance data? On 07/17/2015 05:48 PM, Brian Paul wrote: > If the new mode matches the current mode, there can be no error. > --- >

[Mesa-dev] [PATCH 1/6] mesa: move check for no-op glFrontFace call earlier

2015-07-17 Thread Brian Paul
If the new mode matches the current mode, there can be no error. --- src/mesa/main/polygon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/main/polygon.c b/src/mesa/main/polygon.c index a1f0aa0..6be6f33 100644 --- a/src/mesa/main/polygon.c +++ b/src/mesa/main/p