Re: [Piglit] [PATCH 06/18] shader_runner: Refactor handling of fb commands.

2016-11-09 Thread Marek Olšák
On Wed, Nov 9, 2016 at 11:41 PM, Francisco Jerez wrote: > @@ -3622,7 +3636,6 @@ piglit_init(int argc, char **argv) > sso_in_use = false; > prog_err_info = NULL; > vao = 0; > - fbo = 0;

Re: [Piglit] [PATCH 06/18] shader_runner: Refactor handling of fb commands.

2016-11-09 Thread Francisco Jerez
Marek Olšák writes: > On Wed, Nov 9, 2016 at 8:10 PM, Francisco Jerez wrote: >> Marek Olšák writes: >> >>> On Wed, Oct 19, 2016 at 1:36 AM, Francisco Jerez >>> wrote: This refactors the implementation of the various "fb" commands to be part of a single 'if (parse_str(line, "fb ", ..

Re: [Piglit] [PATCH 06/18] shader_runner: Refactor handling of fb commands.

2016-11-09 Thread Marek Olšák
On Wed, Nov 9, 2016 at 8:10 PM, Francisco Jerez wrote: > Marek Olšák writes: > >> On Wed, Oct 19, 2016 at 1:36 AM, Francisco Jerez >> wrote: >>> This refactors the implementation of the various "fb" commands to be >>> part of a single 'if (parse_str(line, "fb ", ...)) {}' block in order >>> to

Re: [Piglit] [PATCH 06/18] shader_runner: Refactor handling of fb commands.

2016-11-09 Thread Francisco Jerez
Marek Olšák writes: > On Wed, Oct 19, 2016 at 1:36 AM, Francisco Jerez > wrote: >> This refactors the implementation of the various "fb" commands to be >> part of a single 'if (parse_str(line, "fb ", ...)) {}' block in order >> to make code-sharing easier among fb subcommands. Will be more use

Re: [Piglit] [PATCH 06/18] shader_runner: Refactor handling of fb commands.

2016-11-09 Thread Marek Olšák
On Wed, Oct 19, 2016 at 1:36 AM, Francisco Jerez wrote: > This refactors the implementation of the various "fb" commands to be > part of a single 'if (parse_str(line, "fb ", ...)) {}' block in order > to make code-sharing easier among fb subcommands. Will be more useful > when we start introducin

[Piglit] [PATCH 06/18] shader_runner: Refactor handling of fb commands.

2016-10-18 Thread Francisco Jerez
This refactors the implementation of the various "fb" commands to be part of a single 'if (parse_str(line, "fb ", ...)) {}' block in order to make code-sharing easier among fb subcommands. Will be more useful when we start introducing additional fb subcommands. --- tests/shaders/shader_runner.c |