[Mesa-dev] How to build glu lib

2016-08-18 Thread Jian
Dear Gurus, I have downloaded the latest source code of glu lib. I have no idea how to build it in VS 2015. There is no make file in the folder. Could you please give me some advice? BTW, I have already build latest mesa lib. The demo example works fine with mesa lib and old glu32.lib given

[Mesa-dev] [PATCH] Move the format and type check before select_tex_image.

2011-12-23 Thread jian . j . zhao
From: Jian Zhao Move the format and type check before select_tex_image, or it will fail to report the mismatch error if the teximage is null. Reported-by: Anuj Phogat Signed-off-by: Jian Zhao Reviewed-by: Yuanhan Liu --- src/mesa/main/texgetimage.c | 12 ++-- 1 files changed, 6

[Mesa-dev] [PATCH] Move the format and type check before select_tex_image, or it will

2011-12-21 Thread jian . j . zhao
From: Jian Zhao Reported-by: Anuj Phogat Signed-off-by: Jian Zhao Reviewed-by: Yuanhan Liu --- src/mesa/main/texgetimage.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index 3f24187..6ead871

[Mesa-dev] [PATCH] Add mismatch check for glGetTexImage or it will return -1 and may lead to segment fault.

2011-12-12 Thread jian . j . zhao
From: Jian Zhao --- src/mesa/main/texgetimage.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/texgetimage.c b/src/mesa/main/texgetimage.c index ae0d51f..3f24187 100644 --- a/src/mesa/main/texgetimage.c +++ b/src/mesa/main/texgetimage.c @@ -708,6

Re: [Mesa-dev] RC3 build problem

2011-07-26 Thread Zhao, Jian J
> -Original Message- > From: mesa-dev-bounces+jian.j.zhao=intel@lists.freedesktop.org > [mailto:mesa-dev-bounces+jian.j.zhao=intel@lists.freedesktop.org] On > Behalf Of Ian Romanick > Sent: Wednesday, July 27, 2011 12:59 AM > To: Marty Jack > Cc: =?windows-1252?Q?Kristian_H=F8gsber?

[Mesa-dev] [PATCH] Mesa: fix an error in uniform arrays in row calculating.

2011-01-04 Thread Jian Zhao
Fix the error in uniform row calculating, it may alloc one line more which may cause out of range on memory usage, sometimes program aborted when free the memory. --- src/mesa/main/uniforms.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/uniforms.c b/src/m