Re: [Piglit] [PATCH] Porting basic GL rendering tests to piglit

2015-09-02 Thread Juliet Fru
Hello IIia, Thank you for the corrections. I will make these changes and submit. Regards, Juliet On Tue, Sep 1, 2015 at 11:17 PM, Ilia Mirkin wrote: > On Tue, Sep 1, 2015 at 5:49 PM, Juliet Fru wrote: > > --- > > tests/all.py

Re: [Piglit] [PATCH] Porting basic GL rendering tests to piglit

2015-09-02 Thread Juliet Fru
> > Hello Emil, > > > Afaics adding PIGLIT_GL_VISUAL_DEPTH and PIGLIT_GL_VISUAL_STENCIL to > the config.window_visual should suffice. Never had the pleasure of > using them, but things ought to just work. > > I have added, I will be sending in the patch shortly. I just have some issues with

Re: [Piglit] [PATCH] Porting basic GL rendering tests to piglit

2015-09-02 Thread Emil Velikov
On 2 September 2015 at 23:17, Juliet Fru wrote: > Hello Emil, > >> > +enum piglit_result >> > +piglit_display(void) >> > +{ >> > + bool pass = true; >> > + enum path p, paths[10]; >> > + int i, num_paths = 0; >> > + >> > + static const float white[3] =

Re: [Piglit] [PATCH] Porting basic GL rendering tests to piglit

2015-09-02 Thread Emil Velikov
Hi Juliet, On 1 September 2015 at 22:49, Juliet Fru wrote: > +enum piglit_result > +piglit_display(void) > +{ > + bool pass = true; > + enum path p, paths[10]; > + int i, num_paths = 0; > + > + static const float white[3] = {1.0, 1.0, 1.0}; > + > +

Re: [Piglit] [PATCH] Porting basic GL rendering tests to piglit

2015-09-02 Thread Juliet Fru
Hello Emil, > +enum piglit_result > > +piglit_display(void) > > +{ > > + bool pass = true; > > + enum path p, paths[10]; > > + int i, num_paths = 0; > > + > > + static const float white[3] = {1.0, 1.0, 1.0}; > > + > > + /* draw 10x10 pixel quads */ > > +

[Piglit] [PATCH] Porting basic GL rendering tests to piglit

2015-09-01 Thread Juliet Fru
--- tests/all.py| 1 + tests/spec/gl-1.0/CMakeLists.gl.txt | 1 + tests/spec/gl-1.0/no-op-paths.c | 332 3 files changed, 334 insertions(+) create mode 100644 tests/spec/gl-1.0/no-op-paths.c diff --git a/tests/all.py

Re: [Piglit] [PATCH] Porting basic GL rendering tests to piglit

2015-09-01 Thread Ilia Mirkin
On Tue, Sep 1, 2015 at 5:49 PM, Juliet Fru wrote: > --- > tests/all.py| 1 + > tests/spec/gl-1.0/CMakeLists.gl.txt | 1 + > tests/spec/gl-1.0/no-op-paths.c | 332 > > 3 files changed, 334 insertions(+) >