Lines Matching refs:value
1058 << tcu::TestLog::Message << "GL_MAX_IMAGE_UNITS value is invalid." << tcu::TestLog::EndMessage;
1064 << tcu::TestLog::Message << "GL_MAX_COMBINED_SHADER_OUTPUT_RESOURCES value is invalid."
1071 << tcu::TestLog::Message << "GL_MAX_IMAGE_SAMPLES value is invalid." << tcu::TestLog::EndMessage;
1077 << tcu::TestLog::Message << "GL_MAX_VERTEX_IMAGE_UNIFORMS value is invalid."
1084 << tcu::TestLog::Message << "GL_MAX_TESS_EVALUATION_IMAGE_UNIFORMS value is invalid."
1091 << tcu::TestLog::Message << "GL_MAX_TESS_CONTROL_IMAGE_UNIFORMS value is invalid."
1098 << tcu::TestLog::Message << "GL_MAX_GEOMETRY_IMAGE_UNIFORMS value is invalid."
1105 << tcu::TestLog::Message << "GL_MAX_FRAGMENT_IMAGE_UNIFORMS value is invalid."
1112 << tcu::TestLog::Message << "GL_MAX_COMBINED_IMAGE_UNIFORMS value is invalid."
1472 std::string GenFS(GLenum internalformat, const T& value)
1478 << TypePrefix<T>() << "vec4" << value << ");" NL " discard;" NL "}";
1596 bool Read(GLenum internalformat, const T& value, const T& expected_value)
1602 std::vector<T> data(kSize * kSize, value);
1627 << tcu::TestLog::Message << "Bad load value. Format is: " << FormatEnumToString(internalformat)
1845 std::string GenVS(GLenum internalformat, const T& value)
1851 << TypePrefix<T>() << "vec4" << value << ");" NL "}";
1856 std::string GenTCS(GLenum internalformat, const T& value)
1865 << TypePrefix<T>() << "vec4" << value << ");" NL "}";
1870 std::string GenTES(GLenum internalformat, const T& value)
1877 << TypePrefix<T>() << "vec4" << value << ");" NL "}";
1882 std::string GenGS(GLenum internalformat, const T& value)
1889 << TypePrefix<T>() << "vec4" << value << ");" NL "}";
2007 bool Read(GLenum internalformat, const T& value, const T& expected_value)
2013 std::vector<T> data(kSize * kSize, value);
2076 << tcu::TestLog::Message << "Bad load value. Format is: " << FormatEnumToString(internalformat)
2262 bool Read(GLenum internalformat, const T& value, const T& expected_value)
2276 std::vector<T> data(kSize * kSize, value);
2936 bool Read(GLenum internalformat, const T& value, const T& expected_value)
2947 std::vector<T> data(kSize * kSize * 2, value);
3062 bool ReadCube(GLenum internalformat, const T& value, const T& expected_value)
3072 std::vector<T> data(kSize * kSize * 12, value);
3305 bool ReadMS(GLenum internalformat, const T& value, const T& expected_value)
3331 ClearBuffer(GL_COLOR, 0, value);
3332 ClearBuffer(GL_COLOR, 1, value);
3333 ClearBuffer(GL_COLOR, 2, value);
3657 const GLint value[4] = { 0, 0, 0, 0 };
3658 glClearBufferiv(GL_COLOR, 0, value);
3659 glClearBufferiv(GL_COLOR, 1, value);
3660 glClearBufferiv(GL_COLOR, 2, value);
3664 const GLuint value[4] = { 0, 0, 0, 0 };
3665 glClearBufferuiv(GL_COLOR, 0, value);
3666 glClearBufferuiv(GL_COLOR, 1, value);
3667 glClearBufferuiv(GL_COLOR, 2, value);
5634 << tcu::TestLog::Message << "Bad buffer value found at index " << i << tcu::TestLog::EndMessage;
5753 m_context.getTestContext().getLog() << tcu::TestLog::Message << "Buffer value is " << i32
5762 m_context.getTestContext().getLog() << tcu::TestLog::Message << "Texture value is " << ui32 << " should be "
6750 * coordinates and write its value to "destination" image at same
7010 /* Uniform location and invalid value */
7085 /* Attribute location and invalid value */
7588 /* Attribute location and invalid value */
7884 * * load texel from "incomplete_source" and store its value to
7886 * * load texel from "complete_source" and store its value to
7902 * sure, it should be initial value),
7929 * texel value.
8173 /* Uniform location and invalid value */
8296 /* Attribute location and invalid value */
8616 /** Get mask of bits used to store value.
8650 /** Get mask of bits used to store value.
8685 /** Extract value from bit-field
8699 /** Extract value from bit-field and negate it
8701 * @return Negated value
8706 const T value = Get();
8708 return Clamp((~value) + 1) & mask;
9008 /** Write name of variable used to store value loaded from image at given index to output stream
9349 /** Get value of texel for image at given index
9634 /* Set uniform value */
9666 << " Image format: " << format_details.m_image_format << " Original value: "
9668 << " Copied value: "
9670 << texture_data[positive_value_index + i] << " Negated value: "
9686 * @param original_value Original value of texel, used when creating a texture
9739 * @param original_value Original value of texel, used when creating a texture
9780 * @param original_value Original value of texel, used when creating a texture
9819 * @param original_value Original value of texel, used when creating a texture
9842 * @param original_value Original value of texel, used when creating a texture
10275 /** Extracts red channel from texture and verify if all texels are set to specified value
10277 * @param value Expected value
10279 * @return true if all texel match expected value, false otherwise
10281 bool isTextureFilledWithValue(GLfloat value)
10288 if (value != m_extracted_texture_data[i])
10291 << " has invalid value: " << m_extracted_texture_data[i]
10292 << " expected: " << value << tcu::TestLog::EndMessage;
10624 << tcu::TestLog::Message << "glUniform1i should generate INVALID_VALUE when <value> is less than zero."
10633 << "glUniform1i should generate INVALID_VALUE when <value> is greater than or equal to the value of "
10643 << tcu::TestLog::Message << "glUniform1iv should generate INVALID_VALUE when <value> is less than zero."
10652 << tcu::TestLog::Message << "glUniform1iv should generate INVALID_VALUE when <value> is greater "
10653 "than or equal to the value of MAX_IMAGE_UNITS."
10685 << "glProgramUniform1i should generate INVALID_VALUE when <value> is less than zero."
10694 << "glProgramUniform1i should generate INVALID_VALUE when <value> is greater than or equal to the "
10695 "value of MAX_IMAGE_UNITS."
10706 << "glProgramUniform1iv should generate INVALID_VALUE when <value> is less than zero."
10715 << tcu::TestLog::Message << "glProgramUniform1iv should generate INVALID_VALUE when <value> "
10716 "is greater than or equal to the value of MAX_IMAGE_UNITS."
10768 "greater than or equal to the value of MAX_IMAGE_UNITS."
11018 * value = 1;
11021 * value = imageAtomicAdd(u_image[i], coord, value);
11108 " int value = 1;\n"
11112 " value = imageAtomicAdd(u_image[i], vs_fs_coord, value);\n"
11177 " int value = 1;\n"
11181 " value = imageAtomicAdd(u_image[i], vs_gs_coord[0], value);\n"
11243 " int value = 1;\n"
11247 " value = imageAtomicAdd(u_image[i], vs_tcs_coord[0], value);\n"
11321 " int value = 1;\n"
11325 " value = imageAtomicAdd(u_image[i], vs_tes_coord[0], value);\n"
11385 " int value = 1;\n"
11389 " value = imageAtomicAdd(u_image[i], vs_in_coord, value);\n"
11426 " int value = 1;\n"
11430 " value = imageAtomicAdd(u_image_fragment[i], gs_fs_coord, value);\n"
11457 " int value = 1;\n"
11461 " value = imageAtomicAdd(u_image_geometry[i], tes_gs_coord[0], value);\n"
11489 " int value = 1;\n"
11493 " value = imageAtomicAdd(u_image_tess_control[i], vs_tcs_coord[0], value);\n"
11520 " int value = 1;\n"
11524 " value = imageAtomicAdd(u_image_tess_evaluation[i], tcs_tes_coord[0], value);\n"
11549 " int value = 1;\n"
11553 " value = imageAtomicAdd(u_image[i], vs_in_coord, value);\n"