1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
/*
* Copyright © 2015 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.
*/
/**
* \file texture-compressed-block.c
*
* Verify conditions defined on the spec for the following pnames:
* * TEXTURE_COMPRESSED_BLOCK_WIDTH
* * TEXTURE_COMPRESSED_BLOCK_HEIGHT
* * TEXTURE_COMPRESSED_BLOCK_SIZE
*
* In all those three the spec says :
*
* "If the internal format is not compressed, or the resource is not
* supported, 0 is returned."
*
* One could guess which internalformats are compressed, but
* TEXTURE_COMPRESSED is already there to know that.
*
* So this test just verifies that if TEXTURE_COMPRESSED or
* INTERNALFORMAT_SUPPORTED are false, all those pnames should return
* 0.
*
* In that sense, this test is generic-pname-checks on those pnames,
* plus a TEXTURE_COMPRESSED check.
*
*/
#include "common.h"
PIGLIT_GL_TEST_CONFIG_BEGIN
config.supports_gl_compat_version = 10;
config.window_visual = PIGLIT_GL_VISUAL_RGB;
config.khr_no_error_support = PIGLIT_NO_ERRORS;
PIGLIT_GL_TEST_CONFIG_END
enum piglit_result
piglit_display(void)
{
return PIGLIT_FAIL;
}
static const GLenum pnames[] = {
GL_TEXTURE_COMPRESSED_BLOCK_WIDTH,
GL_TEXTURE_COMPRESSED_BLOCK_HEIGHT,
GL_TEXTURE_COMPRESSED_BLOCK_SIZE,
};
/* As with test_data_check_supported, @data is only used to know if we
* are checking the 32 or the 64-bit query. @data content should not
* be modified */
static bool
test_data_check_compressed(test_data *data,
const GLenum target,
const GLenum internalformat)
{
bool result;
test_data *local_data = test_data_new(test_data_get_testing64(data), 1);
test_data_execute(local_data, target, internalformat,
GL_TEXTURE_COMPRESSED);
if (!piglit_check_gl_error(GL_NO_ERROR))
result = false;
else
result = test_data_value_at_index(local_data, 0) == GL_TRUE;
test_data_clear(&local_data);
return result;
}
/* try_local could be implemented as try_basic (at common.c) with
* @possible_values==NULL, and testing that if TEXTURE_COMPRESSED is
* false, it should returns zero. Candidate to be refactored */
bool
try_local(const GLenum *targets, unsigned num_targets,
const GLenum *internalformats, unsigned num_internalformats,
const GLenum pname,
test_data *data)
{
bool pass = true;
unsigned i;
unsigned j;
for (i = 0; i < num_targets; i++) {
for (j = 0; j < num_internalformats; j++) {
bool error_test;
bool value_test = true;
bool supported;
bool compressed;
supported = check_query2_dependencies(pname, targets[i])
&& test_data_check_supported(data, targets[i],
internalformats[j]);
compressed = test_data_check_compressed(data, targets[i],
internalformats[j]);
test_data_execute(data, targets[i], internalformats[j],
pname);
/* If it is supported and compressed, we don't
* have a way to verify at this point that the
* returned value is correct */
if (supported && compressed)
continue;
error_test =
piglit_check_gl_error(GL_NO_ERROR);
/*
* From spec:
* "If the internal format is not compressed,
* or the resource is not supported, 0 is
* returned."
*/
if (!supported || !compressed)
value_test = test_data_is_unsupported_response(data, pname);
if (error_test && value_test)
continue;
/* If we are here, the test is failing */
print_failing_case(targets[i], internalformats[j],
pname, data);
if (!supported && !value_test)
fprintf(stderr,"\tInternalformat is not supported, but returned value is not zero\n");
if (!compressed && !value_test)
fprintf(stderr,"\tInternalformat is not compressed, but returned value is not zero\n");
pass = false;
}
}
return pass;
}
static bool
check_texture_compressed_block(const GLenum *pnames, unsigned num_pnames)
{
bool check_pass = true;
test_data *data = test_data_new(0, 1);
unsigned i;
int testing64;
for (i = 0; i < num_pnames; i++) {
bool pass = true;
for (testing64 = 0; testing64 <= 1; testing64++) {
test_data_set_testing64(data, testing64);
pass = try_local(valid_targets, ARRAY_SIZE(valid_targets),
valid_internalformats, num_valid_internalformats,
pnames[i], data)
&& pass;
}
piglit_report_subtest_result(pass ? PIGLIT_PASS : PIGLIT_FAIL,
"%s", piglit_get_gl_enum_name(pnames[i]));
check_pass = check_pass && pass;
}
test_data_clear(&data);
return check_pass;
}
void
piglit_init(int argc, char **argv)
{
bool pass = true;
piglit_require_extension("GL_ARB_internalformat_query2");
initialize_valid_internalformats();
pass = check_texture_compressed_block(pnames, ARRAY_SIZE(pnames))
&& pass;
piglit_report_result(pass ? PIGLIT_PASS : PIGLIT_FAIL);
}
|