[Piglit] [PATCH 1/2] Test that VertexAttribP*() must use one of the appropriate types.

Chris Forbes chrisf at ijw.co.nz
Mon Nov 18 18:26:00 PST 2013


3.3 for the required version seems silly -- the extension is supported
on plenty of older hardware, and this test is valuable there.

I think both this and your other patch should have:

     config.supports_gl_core_version = 31;
     config.supports_gl_compat_version = 20;

and check for ARB_vertex_type_2_10_10_10_rev if the actual context
version is < 3.3;


On Tue, Nov 19, 2013 at 11:27 AM, Nicholas Mack <nichmack at gmail.com> wrote:
> ---
>  .../CMakeLists.gl.txt                              |  1 +
>  .../vertex-attrib-p-types.c                        | 81 ++++++++++++++++++++++
>  2 files changed, 82 insertions(+)
>  create mode 100644 tests/spec/arb_vertex_type_2_10_10_10_rev/vertex-attrib-p-types.c
>
> diff --git a/tests/spec/arb_vertex_type_2_10_10_10_rev/CMakeLists.gl.txt b/tests/spec/arb_vertex_type_2_10_10_10_rev/CMakeLists.gl.txt
> index 2ca905b..9154c26 100644
> --- a/tests/spec/arb_vertex_type_2_10_10_10_rev/CMakeLists.gl.txt
> +++ b/tests/spec/arb_vertex_type_2_10_10_10_rev/CMakeLists.gl.txt
> @@ -10,5 +10,6 @@ link_libraries (
>  )
>
>  piglit_add_executable (draw-vertices-2101010 draw-vertices-2101010.c)
> +piglit_add_executable (gl-3.3-vertex-attrib-p-types vertex-attrib-p-types.c)
>
>  # vim: ft=cmake:
> diff --git a/tests/spec/arb_vertex_type_2_10_10_10_rev/vertex-attrib-p-types.c b/tests/spec/arb_vertex_type_2_10_10_10_rev/vertex-attrib-p-types.c
> new file mode 100644
> index 0000000..366cf87
> --- /dev/null
> +++ b/tests/spec/arb_vertex_type_2_10_10_10_rev/vertex-attrib-p-types.c
> @@ -0,0 +1,81 @@
> +/* Copyright © 2013 Intel Corporation
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the next
> + * paragraph) shall be included in all copies or substantial portions of the
> + * Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
> + * IN THE SOFTWARE.
> + */
> +
> +/**
> + * Test that VertexAttribP*() must use types INT_2_10_10_10_REV or
> + * UNSIGNED_INT_2_10_10_10_REV
> + *
> + * Section 2.7(Vertex Specification) of GL3.3 core spec says:
> + * "The type parameter must be INT_2_10_10_10_REV or
> + *  UNSIGNED_INT_2_10_10_10_REV, specifying signed or unsigned data
> + *  respectively."
> + */
> +
> +#include "piglit-util-gl-common.h"
> +
> +PIGLIT_GL_TEST_CONFIG_BEGIN
> +
> +       config.supports_gl_core_version = 33;
> +       config.supports_gl_compat_version = 33;
> +
> +PIGLIT_GL_TEST_CONFIG_END
> +
> +void
> +piglit_init(int argc, char **argv)
> +{
> +       bool pass = true;
> +       int i;
> +       GLuint x = 21;
> +       GLenum valid_types[] = {
> +               GL_UNSIGNED_INT_2_10_10_10_REV,
> +               GL_INT_2_10_10_10_REV
> +       };
> +       GLenum invalid_types[] = {
> +               GL_BYTE, GL_SHORT, GL_INT, GL_FLOAT, GL_HALF_FLOAT, GL_DOUBLE,
> +               GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, GL_UNSIGNED_INT
> +       };
> +
> +       for (i = 0; i < ARRAY_SIZE(valid_types); i++) {
> +               glVertexAttribP1ui(0, valid_types[i], true, x);
> +               pass = piglit_check_gl_error(GL_NO_ERROR) && pass;
> +
> +               glVertexAttribP1uiv(0, valid_types[i], true, &x);
> +               pass = piglit_check_gl_error(GL_NO_ERROR) && pass;
> +       }
> +
> +       for (i = 0; i < ARRAY_SIZE(invalid_types); i++) {
> +               glVertexAttribP1ui(0, invalid_types[i], true, x);
> +               pass = piglit_check_gl_error(GL_INVALID_ENUM) && pass;
> +
> +               glVertexAttribP1uiv(0, invalid_types[i], true, &x);
> +               pass = piglit_check_gl_error(GL_INVALID_ENUM) && pass;
> +       }
> +
> +       piglit_report_result(pass ? PIGLIT_PASS : PIGLIT_FAIL);
> +}
> +
> +enum piglit_result
> +piglit_display(void)
> +{
> +       /* UNREACHED */
> +       return PIGLIT_FAIL;
> +}
> --
> 1.8.3.1
>
> _______________________________________________
> Piglit mailing list
> Piglit at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/piglit


More information about the Piglit mailing list