Re: [Piglit] random results with texture-integer-glsl130

2012-09-06 Thread Vinson Lee
On Fri, Aug 31, 2012 at 10:13 AM, Vadim Girlin wrote: > > texture-integer-glsl130 is randomly failing/passing for me with r600g. > AFAICS it usually fails due to alpha component mismatch while testing > the formats that don't have alpha. Here is the example: > > texture-integer: failure with forma

Re: [Piglit] [PATCH] msaa: Test that multisampled blits can flip the image in the X or Y direction.

2012-09-06 Thread Anuj Phogat
On Wed, Sep 5, 2012 at 5:25 PM, Paul Berry wrote: > --- > tests/all.tests|9 + > .../ext_framebuffer_multisample/CMakeLists.gl.txt |1 + > .../ext_framebuffer_multisample/blit-flipped.cpp | 183 > > 3 files changed, 193 inserti

Re: [Piglit] [PATCH] max-texture-size-level: test per-level max texture size error checking

2012-09-06 Thread Vadim Girlin
On Thu, 2012-09-06 at 16:56 -0600, Brian Paul wrote: > On 09/06/2012 04:42 PM, Vadim Girlin wrote: > > On Thu, 2012-09-06 at 08:01 -0600, Brian Paul wrote: > >> On 09/05/2012 06:26 PM, Vadim Girlin wrote: > >>> On Tue, 2012-09-04 at 17:05 -0600, Brian Paul wrote: > --- > tests/all.test

Re: [Piglit] ARB_texture_cube_map_array : initial tests

2012-09-06 Thread Dave Airlie
On Fri, Sep 7, 2012 at 1:08 AM, Brian Paul wrote: > On 09/05/2012 09:34 PM, Dave Airlie wrote: >> >> This is a bunch of tests to start testing ARB_texture_cube_map_array. >> >> The first patch modifies textureSize, the rest are standalone tests, >> and the final patch just adds to all.tests. All t

[Piglit] [PATCH] max-texture-size-level: don't try to create maxSize x maxSize textures

2012-09-06 Thread Brian Paul
We might not have enough memory for a texture that large. Use width or height = 1 instead. --- tests/texturing/max-texture-size-level.c | 40 +++-- 1 files changed, 31 insertions(+), 9 deletions(-) diff --git a/tests/texturing/max-texture-size-level.c b/tests/texturing/

Re: [Piglit] [PATCH] max-texture-size-level: test per-level max texture size error checking

2012-09-06 Thread Brian Paul
On 09/06/2012 04:42 PM, Vadim Girlin wrote: On Thu, 2012-09-06 at 08:01 -0600, Brian Paul wrote: On 09/05/2012 06:26 PM, Vadim Girlin wrote: On Tue, 2012-09-04 at 17:05 -0600, Brian Paul wrote: --- tests/all.tests |1 + tests/texturing/CMakeLists.gl.txt

Re: [Piglit] [PATCH] max-texture-size-level: test per-level max texture size error checking

2012-09-06 Thread Vadim Girlin
On Thu, 2012-09-06 at 08:01 -0600, Brian Paul wrote: > On 09/05/2012 06:26 PM, Vadim Girlin wrote: > > On Tue, 2012-09-04 at 17:05 -0600, Brian Paul wrote: > >> --- > >> tests/all.tests |1 + > >> tests/texturing/CMakeLists.gl.txt|1 + > >> tests/texturi

Re: [Piglit] [PATCH] Add OpenCL support

2012-09-06 Thread Blaž Tomažič
On čet, 2012-09-06 at 09:16 -0700, Eric Anholt wrote: > Blaž Tomažič writes: > > > On tor, 2012-09-04 at 07:14 -0700, Tom Stellard wrote: > >> Some of the cl-util files contain some really long lines, especially > >> piglit-framework-cl-program.c:96-99. You should go through and wrap some > >> o

Re: [Piglit] [PATCH] Add OpenCL support

2012-09-06 Thread Eric Anholt
Blaž Tomažič writes: > On tor, 2012-09-04 at 07:14 -0700, Tom Stellard wrote: >> Some of the cl-util files contain some really long lines, especially >> piglit-framework-cl-program.c:96-99. You should go through and wrap some >> of the longer lines at 80 characters to make them easier to read. >

Re: [Piglit] ARB_texture_cube_map_array : initial tests

2012-09-06 Thread Brian Paul
On 09/05/2012 09:34 PM, Dave Airlie wrote: This is a bunch of tests to start testing ARB_texture_cube_map_array. The first patch modifies textureSize, the rest are standalone tests, and the final patch just adds to all.tests. All tests pass on the nvidia binary 295.59. I think the one area I've

Re: [Piglit] [PATCH 6/7] arb_texture_cube_map_array: add fbo test

2012-09-06 Thread Brian Paul
On 09/05/2012 09:34 PM, Dave Airlie wrote: This tests the glFramebufferTextureLayer interface. Signed-off-by: Dave Airlie --- .../arb_texture_cube_map_array/CMakeLists.gl.txt |1 + .../arb_texture_cube_map_array/fbo-cubemap-array.c | 297 2 files changed, 298 inse

Re: [Piglit] [PATCH 5/7] arb_texture_cube_map_array: add cube array shadow sampler

2012-09-06 Thread Brian Paul
On 09/05/2012 09:34 PM, Dave Airlie wrote: This tests cubemap array shadow support, these are different as we have to pass the compare value not in the texture coord but in a separate attribute. Tested against NVIDIA 295 series. Signed-off-by: Dave Airlie --- .../arb_texture_cube_map_array/CM

Re: [Piglit] [PATCH 4/7] arb_texture_cube_map_array: test getting binding.

2012-09-06 Thread Brian Paul
On 09/05/2012 09:34 PM, Dave Airlie wrote: From: Dave Airlie test the getintegerv addition from the spec. Signed-off-by: Dave Airlie --- .../arb_texture_cube_map_array/CMakeLists.gl.txt |1 + tests/spec/arb_texture_cube_map_array/get.c| 61 2 files chang

Re: [Piglit] [PATCH 3/7] arb_texture_cube_map_array: check for teximage3d invalid values.

2012-09-06 Thread Brian Paul
On 09/05/2012 09:34 PM, Dave Airlie wrote: From: Dave Airlie This tests teximage3d returns invalid values for width != height and depth not divisible by 6. Signed-off-by: Dave Airlie --- .../arb_texture_cube_map_array/CMakeLists.gl.txt |1 + .../teximage3d-invalid-values.c

Re: [Piglit] [PATCH 2/7] arb_texture_cube_map_array: basic cubemap test

2012-09-06 Thread Brian Paul
On 09/05/2012 09:34 PM, Dave Airlie wrote: This creates a cube map array of 2 cubes, and tests the upload via glTexImage3D and rendering of each layer happens correctly. note it needs to redefine the common cubemap stuff as they are in the wrong order for cubemap arrays. Signed-off-by: Dave Air

Re: [Piglit] [PATCH] max-texture-size-level: test per-level max texture size error checking

2012-09-06 Thread Brian Paul
On 09/05/2012 06:26 PM, Vadim Girlin wrote: On Tue, 2012-09-04 at 17:05 -0600, Brian Paul wrote: --- tests/all.tests |1 + tests/texturing/CMakeLists.gl.txt|1 + tests/texturing/max-texture-size-level.c | 87 ++ 3 files