Re: [Mesa-dev] [PATCH] mesa: don't call Driver.TexEnv with invalid arguments

2018-05-29 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Tue, May 29, 2018 at 7:24 AM, Tapani Pälli wrote: > Patch skips useless and possibly dangerous calls down to the driver > in case invalid arguments were given. I noticed this would be happening > with demo of Darwinia game. AFAIK this does not fix anything but

[Mesa-dev] [PATCH] mesa: don't call Driver.TexEnv with invalid arguments

2018-05-29 Thread Tapani Pälli
Patch skips useless and possibly dangerous calls down to the driver in case invalid arguments were given. I noticed this would be happening with demo of Darwinia game. AFAIK this does not fix anything but makes this path safer and more like how other API functions are implemented. Signed-off-by: T