Re: [Mesa-dev] [PATCH 1/4] mesa: expose dimension check for glTex*Storage functions

2015-08-12 Thread Tapani Pälli
On 08/10/2015 07:50 PM, Brian Paul wrote: On 08/10/2015 02:06 AM, Tapani Pälli wrote: This is done so that following patch can use it to verify dimenstions for multisample variants of glTex*Storage. Signed-off-by: Tapani Pälli --- src/mesa/main/texstorage.c | 22 +- sr

Re: [Mesa-dev] [PATCH 1/4] mesa: expose dimension check for glTex*Storage functions

2015-08-10 Thread Brian Paul
On 08/10/2015 02:06 AM, Tapani Pälli wrote: This is done so that following patch can use it to verify dimenstions for multisample variants of glTex*Storage. Signed-off-by: Tapani Pälli --- src/mesa/main/texstorage.c | 22 +- src/mesa/main/texstorage.h | 3 +++ 2 files c

Re: [Mesa-dev] [PATCH 1/4] mesa: expose dimension check for glTex*Storage functions

2015-08-10 Thread Tapani Pälli
On 08/10/2015 12:04 PM, Timothy Arceri wrote: On Mon, 2015-08-10 at 11:06 +0300, Tapani Pälli wrote: This is done so that following patch can use it to verify dimenstions for multisample variants of glTex*Storage. Signed-off-by: Tapani Pälli --- src/mesa/main/texstorage.c | 22

Re: [Mesa-dev] [PATCH 1/4] mesa: expose dimension check for glTex*Storage functions

2015-08-10 Thread Timothy Arceri
On Mon, 2015-08-10 at 11:06 +0300, Tapani Pälli wrote: > This is done so that following patch can use it to verify dimenstions > for multisample variants of glTex*Storage. > > Signed-off-by: Tapani Pälli > --- > src/mesa/main/texstorage.c | 22 +- > src/mesa/main/texstorage.h

[Mesa-dev] [PATCH 1/4] mesa: expose dimension check for glTex*Storage functions

2015-08-10 Thread Tapani Pälli
This is done so that following patch can use it to verify dimenstions for multisample variants of glTex*Storage. Signed-off-by: Tapani Pälli --- src/mesa/main/texstorage.c | 22 +- src/mesa/main/texstorage.h | 3 +++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --g