Lines Matching defs:value
137 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
176 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
199 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
206 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
229 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
236 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
268 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
275 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
300 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
319 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
358 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value");
390 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value");
408 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value");
426 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value");
444 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value");
468 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value");
487 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid mask value");
517 DE_ASSERT(reference == GLint(referenceAsFloat)); // reference integer must have 1:1 mapping to float for this to work. Reference value is always such value in these tests
529 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value");
560 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value");
578 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value");
596 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value");
614 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value");
631 DE_ASSERT(references[ndx] == GLint(expectedGLState)); // reference integer must have 1:1 mapping to float for this to work. Reference value is always such value in these tests
639 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value");
645 // just verify that the value is greater or equal to the minimum value
882 // verify initial value of first two values
929 // verify initial value
2074 GLint value;
2077 { "subpixel_bits", "SUBPIXEL_BITS has a minimum value of 4", GL_SUBPIXEL_BITS, 4 },
2078 { "max_texture_size", "MAX_TEXTURE_SIZE has a minimum value of 64", GL_MAX_TEXTURE_SIZE, 64 },
2079 { "max_cube_map_texture_size", "MAX_CUBE_MAP_TEXTURE_SIZE has a minimum value of 16", GL_MAX_CUBE_MAP_TEXTURE_SIZE, 16 },
2080 { "max_vertex_attribs", "MAX_VERTEX_ATTRIBS has a minimum value of 8", GL_MAX_VERTEX_ATTRIBS, 8 },
2081 { "max_vertex_uniform_vectors", "MAX_VERTEX_UNIFORM_VECTORS has a minimum value of 128", GL_MAX_VERTEX_UNIFORM_VECTORS, 128 },
2082 { "max_varying_vectors", "MAX_VARYING_VECTORS has a minimum value of 8", GL_MAX_VARYING_VECTORS, 8 },
2083 { "max_combined_texture_image_units", "MAX_COMBINED_TEXTURE_IMAGE_UNITS has a minimum value of 8", GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, 8 },
2084 { "max_vertex_texture_image_units", "MAX_VERTEX_TEXTURE_IMAGE_UNITS has a minimum value of 0", GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, 0 },
2085 { "max_texture_image_units", "MAX_TEXTURE_IMAGE_UNITS has a minimum value of 8", GL_MAX_TEXTURE_IMAGE_UNITS, 8 },
2086 { "max_fragment_uniform_vectors", "MAX_FRAGMENT_UNIFORM_VECTORS has a minimum value of 16", GL_MAX_FRAGMENT_UNIFORM_VECTORS, 16 },
2087 { "max_renderbuffer_size", "MAX_RENDERBUFFER_SIZE has a minimum value of 1", GL_MAX_RENDERBUFFER_SIZE, 1 },
2095 FOR_EACH_VERIFIER(implementationLimitVerifiers, addChild(new ConstantMinimumValueTestCase(m_context, verifier, (std::string(implementationMinLimits[testNdx].name) + verifier->getTestNamePostfix()).c_str(), implementationMinLimits[testNdx].description, implementationMinLimits[testNdx].targetName, implementationMinLimits[testNdx].value)));