Lines Matching refs:name

731  *  @param [in] name     Name of the test.
734 BufferTest<T, S, N>::BufferTest(deqp::Context& context, const char* name)
735 : deqp::TestCase(context, name, "Texture Buffer Objects Test")
1469 * @param [in] name Name of the test.
1472 StorageAndSubImageTest<T, S, N, D, I>::StorageAndSubImageTest(deqp::Context& context, const char* name)
1473 : deqp::TestCase(context, name, "Texture Storage and SubImage Test")
2769 StorageMultisampleTest<T, S, N, D>::StorageMultisampleTest(deqp::Context& context, const char* name)
2770 : deqp::TestCase(context, name, "Texture Storage Multisample Test")
6265 glw::GLenum name = GL_DEPTH_STENCIL_TEXTURE_MODE;
6269 gl.textureParameteri(texture, name, value_src);
6270 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6272 gl.getTextureParameteriv(texture, name, &value_dst);
6273 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6275 is_ok &= CompareAndLog(value_src, value_dst, name);
6279 glw::GLenum name = GL_TEXTURE_BASE_LEVEL;
6283 gl.textureParameteri(texture, name, value_src);
6284 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6286 gl.getTextureParameteriv(texture, name, &value_dst);
6287 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6289 is_ok &= CompareAndLog(value_src, value_dst, name);
6293 glw::GLenum name = GL_TEXTURE_BORDER_COLOR;
6297 gl.textureParameterfv(texture, name, value_src);
6298 is_ok &= CheckErrorAndLog("glTextureParameterfv", name);
6300 gl.getTextureParameterfv(texture, name, value_dst);
6301 is_ok &= CheckErrorAndLog("glGetTextureParameterfv", name);
6303 is_ok &= CompareAndLog(value_src, value_dst, name);
6307 glw::GLenum name = GL_TEXTURE_BORDER_COLOR;
6311 gl.textureParameterIiv(texture, name, value_src);
6312 is_ok &= CheckErrorAndLog("glTextureParameterIiv", name);
6314 gl.getTextureParameterIiv(texture, name, value_dst);
6315 is_ok &= CheckErrorAndLog("glGetTextureParameterIiv", name);
6317 is_ok &= CompareAndLog(value_src, value_dst, name);
6321 glw::GLenum name = GL_TEXTURE_BORDER_COLOR;
6325 gl.textureParameterIuiv(texture, name, value_src);
6326 is_ok &= CheckErrorAndLog("glTextureParameterIuiv", name);
6328 gl.getTextureParameterIuiv(texture, name, value_dst);
6329 is_ok &= CheckErrorAndLog("glGetTextureParameterIuiv", name);
6331 is_ok &= CompareAndLog(value_src, value_dst, name);
6335 glw::GLenum name = GL_TEXTURE_COMPARE_FUNC;
6339 gl.textureParameteri(texture, name, value_src);
6340 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6342 gl.getTextureParameteriv(texture, name, &value_dst);
6343 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6345 is_ok &= CompareAndLog(value_src, value_dst, name);
6349 glw::GLenum name = GL_TEXTURE_COMPARE_MODE;
6353 gl.textureParameteri(texture, name, value_src);
6354 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6356 gl.getTextureParameteriv(texture, name, &value_dst);
6357 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6359 is_ok &= CompareAndLog(value_src, value_dst, name);
6363 glw::GLenum name = GL_TEXTURE_LOD_BIAS;
6367 gl.textureParameterf(texture, name, value_src);
6368 is_ok &= CheckErrorAndLog("glTextureParameterf", name);
6370 gl.getTextureParameterfv(texture, name, &value_dst);
6371 is_ok &= CheckErrorAndLog("glGetTextureParameterfv", name);
6373 is_ok &= CompareAndLog(value_src, value_dst, name);
6377 glw::GLenum name = GL_TEXTURE_MIN_FILTER;
6381 gl.textureParameteri(texture, name, value_src);
6382 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6384 gl.getTextureParameteriv(texture, name, &value_dst);
6385 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6387 is_ok &= CompareAndLog(value_src, value_dst, name);
6391 glw::GLenum name = GL_TEXTURE_MAG_FILTER;
6395 gl.textureParameteri(texture, name, value_src);
6396 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6398 gl.getTextureParameteriv(texture, name, &value_dst);
6399 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6401 is_ok &= CompareAndLog(value_src, value_dst, name);
6405 glw::GLenum name = GL_TEXTURE_MIN_LOD;
6409 gl.textureParameteri(texture, name, value_src);
6410 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6412 gl.getTextureParameteriv(texture, name, &value_dst);
6413 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6415 is_ok &= CompareAndLog(value_src, value_dst, name);
6419 glw::GLenum name = GL_TEXTURE_MAX_LOD;
6423 gl.textureParameteri(texture, name, value_src);
6424 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6426 gl.getTextureParameteriv(texture, name, &value_dst);
6427 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6429 is_ok &= CompareAndLog(value_src, value_dst, name);
6433 glw::GLenum name = GL_TEXTURE_MAX_LEVEL;
6437 gl.textureParameteri(texture, name, value_src);
6438 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6440 gl.getTextureParameteriv(texture, name, &value_dst);
6441 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6443 is_ok &= CompareAndLog(value_src, value_dst, name);
6447 glw::GLenum name = GL_TEXTURE_SWIZZLE_R;
6451 gl.textureParameteri(texture, name, value_src);
6452 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6454 gl.getTextureParameteriv(texture, name, &value_dst);
6455 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6457 is_ok &= CompareAndLog(value_src, value_dst, name);
6461 glw::GLenum name = GL_TEXTURE_SWIZZLE_G;
6465 gl.textureParameteri(texture, name, value_src);
6466 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6468 gl.getTextureParameteriv(texture, name, &value_dst);
6469 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6471 is_ok &= CompareAndLog(value_src, value_dst, name);
6475 glw::GLenum name = GL_TEXTURE_SWIZZLE_B;
6479 gl.textureParameteri(texture, name, value_src);
6480 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6482 gl.getTextureParameteriv(texture, name, &value_dst);
6483 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6485 is_ok &= CompareAndLog(value_src, value_dst, name);
6489 glw::GLenum name = GL_TEXTURE_SWIZZLE_A;
6493 gl.textureParameteri(texture, name, value_src);
6494 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6496 gl.getTextureParameteriv(texture, name, &value_dst);
6497 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6499 is_ok &= CompareAndLog(value_src, value_dst, name);
6503 glw::GLenum name = GL_TEXTURE_SWIZZLE_RGBA;
6507 gl.textureParameteriv(texture, name, value_src);
6508 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6510 gl.getTextureParameteriv(texture, name, value_dst);
6511 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6513 is_ok &= CompareAndLog(value_src, value_dst, name);
6517 glw::GLenum name = GL_TEXTURE_WRAP_S;
6521 gl.textureParameteri(texture, name, value_src);
6522 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6524 gl.getTextureParameteriv(texture, name, &value_dst);
6525 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6527 is_ok &= CompareAndLog(value_src, value_dst, name);
6531 glw::GLenum name = GL_TEXTURE_WRAP_T;
6535 gl.textureParameteri(texture, name, value_src);
6536 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6538 gl.getTextureParameteriv(texture, name, &value_dst);
6539 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6541 is_ok &= CompareAndLog(value_src, value_dst, name);
6545 glw::GLenum name = GL_TEXTURE_WRAP_R;
6549 gl.textureParameteriv(texture, name, &value_src);
6550 is_ok &= CheckErrorAndLog("glTextureParameteri", name);
6552 gl.getTextureParameteriv(texture, name, &value_dst);
6553 is_ok &= CheckErrorAndLog("glGetTextureParameteriv", name);
6555 is_ok &= CompareAndLog(value_src, value_dst, name);
6596 * @param [in] pname Parameter name with which function was called.
6625 * @param [in] pname Parameter name.
6648 * @param [in] pname Parameter name.
6671 * @param [in] pname Parameter name.
6694 * @param [in] pname Parameter name.
6719 * @param [in] pname Parameter name.
6744 * @param [in] pname Parameter name.
6812 glw::GLenum name = GL_DEPTH_STENCIL_TEXTURE_MODE;
6816 gl.getTextureParameteriv(texture, name, &value_dst);
6819 is_ok &= CompareAndLog(value_ref, value_dst, name);
6823 glw::GLenum name = GL_TEXTURE_BASE_LEVEL;
6827 gl.getTextureParameteriv(texture, name, &value_dst);
6830 is_ok &= CompareAndLog(value_ref, value_dst, name);
6834 glw::GLenum name = GL_TEXTURE_BORDER_COLOR;
6838 gl.getTextureParameterfv(texture, name, value_dst);
6841 is_ok &= CompareAndLog(value_ref, value_dst, name);
6845 glw::GLenum name = GL_TEXTURE_COMPARE_FUNC;
6849 gl.getTextureParameteriv(texture, name, &value_dst);
6852 is_ok &= CompareAndLog(value_ref, value_dst, name);
6856 glw::GLenum name = GL_TEXTURE_COMPARE_MODE;
6860 gl.getTextureParameteriv(texture, name, &value_dst);
6863 is_ok &= CompareAndLog(value_ref, value_dst, name);
6867 glw::GLenum name = GL_TEXTURE_LOD_BIAS;
6871 gl.getTextureParameterfv(texture, name, &value_dst);
6874 is_ok &= CompareAndLog(value_ref, value_dst, name);
6878 glw::GLenum name = GL_TEXTURE_MIN_FILTER;
6882 gl.getTextureParameteriv(texture, name, &value_dst);
6885 is_ok &= CompareAndLog(value_ref, value_dst, name);
6889 glw::GLenum name = GL_TEXTURE_MAG_FILTER;
6893 gl.getTextureParameteriv(texture, name, &value_dst);
6896 is_ok &= CompareAndLog(value_ref, value_dst, name);
6900 glw::GLenum name = GL_TEXTURE_MIN_LOD;
6904 gl.getTextureParameteriv(texture, name, &value_dst);
6907 is_ok &= CompareAndLog(value_ref, value_dst, name);
6911 glw::GLenum name = GL_TEXTURE_MAX_LOD;
6915 gl.getTextureParameteriv(texture, name, &value_dst);
6918 is_ok &= CompareAndLog(value_ref, value_dst, name);
6922 glw::GLenum name = GL_TEXTURE_MAX_LEVEL;
6926 gl.getTextureParameteriv(texture, name, &value_dst);
6929 is_ok &= CompareAndLog(value_ref, value_dst, name);
6933 glw::GLenum name = GL_TEXTURE_SWIZZLE_R;
6937 gl.getTextureParameteriv(texture, name, &value_dst);
6940 is_ok &= CompareAndLog(value_ref, value_dst, name);
6944 glw::GLenum name = GL_TEXTURE_SWIZZLE_G;
6948 gl.getTextureParameteriv(texture, name, &value_dst);
6951 is_ok &= CompareAndLog(value_ref, value_dst, name);
6955 glw::GLenum name = GL_TEXTURE_SWIZZLE_B;
6959 gl.getTextureParameteriv(texture, name, &value_dst);
6962 is_ok &= CompareAndLog(value_ref, value_dst, name);
6966 glw::GLenum name = GL_TEXTURE_SWIZZLE_A;
6970 gl.getTextureParameteriv(texture, name, &value_dst);
6973 is_ok &= CompareAndLog(value_ref, value_dst, name);
6977 glw::GLenum name = GL_TEXTURE_WRAP_S;
6981 gl.getTextureParameteriv(texture, name, &value_dst);
6984 is_ok &= CompareAndLog(value_ref, value_dst, name);
6988 glw::GLenum name = GL_TEXTURE_WRAP_T;
6992 gl.getTextureParameteriv(texture, name, &value_dst);
6995 is_ok &= CompareAndLog(value_ref, value_dst, name);
6999 glw::GLenum name = GL_TEXTURE_WRAP_R;
7003 gl.getTextureParameteriv(texture, name, &value_dst);
7006 is_ok &= CompareAndLog(value_ref, value_dst, name);
7048 * @param [in] pname Parameter name.
7071 * @param [in] pname Parameter name.
7094 * @param [in] pname Parameter name.
7117 * @param [in] pname Parameter name.
7142 * @param [in] pname Parameter name.
7167 * @param [in] pname Parameter name.
8294 << tcu::TestLog::Message << "For parameter name "
8337 << tcu::TestLog::Message << "For parameter name "
8606 is not the name of an existing texture object. */
8617 "texture is not the name of an existing texture object.");
8639 not the name of an existing buffer object. */
8650 "buffer is not zero and is not the name of an existing buffer object.");
8759 texture is not the name of an existing texture object.*/
8770 "texture is not the name of an existing texture object.");
8792 buffer is not zero and is not the name of an existing buffer object. */
8803 "buffer is not zero and is not the name of an existing buffer object.");
9182 is not the name of an existing texture object. */
9186 "texture is not the name of an existing texture object.");
9240 texture is not the name of an existing texture object. */
9244 "texture is not the name of an existing texture object.");
9311 is not the name of an existing texture object. */
9315 "texture is not the name of an existing texture object.");
9386 if texture is not the name of an existing texture object. */
9390 "texture is not the name of an existing texture object.");
9465 if texture is not the name of an existing texture object. */
9469 "texture is not the name of an existing texture object.");
10148 texture is not the name of an existing texture object. */
10152 "texture is not the name of an existing texture object.");
10284 non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target
10296 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and "
10308 non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target
10318 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and the "
10327 non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target
10337 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and pixels "
10361 texture is not the name of an existing texture object. */
10366 "texture is not the name of an existing texture object.");
10524 non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target
10537 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and "
10549 non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target
10559 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and the "
10568 non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target
10578 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and pixels "
10602 texture is not the name of an existing texture object. */
10607 "texture is not the name of an existing texture object.");
10778 non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target
10791 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and "
10803 non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target
10813 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and the "
10822 non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target
10832 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and pixels "
10859 if texture is not the name of an existing texture object. */
10864 "texture is not the name of an existing texture object.");
10906 if a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER
10919 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target "
10931 if a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER
10942 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and "
10969 if texture is not the name of an existing texture object. */
10975 "texture is not the name of an existing texture object.");
11016 if a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER
11029 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target "
11041 if a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER
11052 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and "
11100 if texture is not the name of an existing texture object. */
11106 "texture is not the name of an existing texture object.");
11148 if a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER
11162 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target "
11174 if a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER
11185 "a non-zero buffer object name is bound to the PIXEL_UNPACK_BUFFER target and "
11572 texture is not the name of an existing texture object, or if the
11577 "texture is not the name of an existing texture object.");
11666 texture is not the name of an existing texture object, or if the
11671 "texture is not the name of an existing texture object.");
11770 texture is not the name of an existing texture object, or if the
11775 "texture is not the name of an existing texture object.");
12030 /* Invalid parameter name. */
12070 /* Invalid depth stencil mode name. */
12184 texture is not the name of an existing texture object. */
12189 "texture is not the name of an existing texture object.");
12312 texture is not the name of an existing texture object. */
12317 "texture is not the name of an existing texture object.");
12436 texture is not the name of an existing texture object. */
12441 "texture is not the name of an existing texture object.");
12560 texture is not the name of an existing texture object. */
12565 "texture is not the name of an existing texture object.");
12684 texture is not the name of an existing texture object. */
12689 "texture is not the name of an existing texture object.");
12807 texture is not the name of an existing texture object. */
12812 "texture is not the name of an existing texture object.");
12932 texture is not the name of an existing texture object. */
12935 "texture is not the name of an existing texture object.");
13040 or the name of an existing texture object. */
13043 "texture is not zero or the name of an existing texture object.");
13238 if texture is not the name of an existing texture object. */
13241 "texture is not the name of an existing texture object.");
13353 if texture is not the name of an existing texture object. */
13356 "texture is not the name of an existing texture object.");
13378 if a non-zero buffer object name is bound to the PIXEL_PACK_BUFFER
13391 "a non-zero buffer object name is bound to the PIXEL_PACK_BUFFER target, the "
13407 if a non-zero buffer object name is bound to the PIXEL_PACK_BUFFER
13415 "a non-zero buffer object name is bound to the PIXEL_PACK_BUFFER target and the data "
13608 and GetTextureLevelParameteriv functions if texture is not the name of
13612 "texture is not the name of an existing texture object.");
13616 "texture is not the name of an existing texture object.");
13831 texture is not the name of an existing texture object. */
13834 "texture is not the name of an existing texture object.");
13838 "texture is not the name of an existing texture object.");
13842 "texture is not the name of an existing texture object.");
13846 "texture is not the name of an existing texture object.");