cmake: move defaults into the per-platform section
[piglit.git] / tests / shaders / vp-combined-image-units.c
blob78fd7b8313151c8b343c69b2800fda6e7e10089e
1 /*
2 * Copyright © 2009 Intel Corporation
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
28 /** @file vp-combined-image-units.c
30 * Tests that ARB_shader_program returns a not-impossible result for
31 * GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS. Catches a regression in wine caused
32 * by bug #25518.
35 #include "piglit-util-gl.h"
37 PIGLIT_GL_TEST_CONFIG_BEGIN
39 config.supports_gl_compat_version = 10;
41 config.window_visual = PIGLIT_GL_VISUAL_RGB | PIGLIT_GL_VISUAL_DOUBLE;
43 PIGLIT_GL_TEST_CONFIG_END
45 enum piglit_result
46 piglit_display(void)
48 GLboolean pass = GL_TRUE;
49 GLint combined, fragment, vertex;
51 glGetIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &combined);
52 glGetIntegerv(GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &vertex);
54 if (combined < vertex) {
55 fprintf(stderr,
56 "Max vertex units (%d) > combined units (%d)\n",
57 vertex, combined);
58 pass = GL_FALSE;
61 glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, &fragment);
62 if (combined < fragment) {
63 fprintf(stderr,
64 "Max fragment units (%d) > "
65 "combined units (%d)\n",
66 fragment, combined);
67 pass = GL_FALSE;
70 pass = pass && glGetError() == 0;
72 piglit_report_result(pass ? PIGLIT_PASS : PIGLIT_FAIL);
74 return PIGLIT_FAIL; /* NOTREACHED */
77 void
78 piglit_init(int argc, char **argv)
80 piglit_require_extension("GL_ARB_vertex_shader");