Lines Matching refs:target
457 * target is GL_TEXTURE_1D and either yoffset is not zero, or height
480 " target is GL_TEXTURE_1D and either yoffset is not zero, or height"
495 * target is GL_TEXTURE_1D, GL_TEXTURE_1D_ARRAY, GL_TEXTURE_2D or
536 " target is "
570 " target is "
843 * @param [in] target Target of the texture to be prepared.
846 void gl4cts::GetTextureSubImage::Functional::prepare(glw::GLenum target, bool is_compressed)
855 gl.bindTexture(target, m_texture);
862 switch (target)
865 gl.compressedTexImage2D(target, 0, GL_COMPRESSED_RGBA_BPTC_UNORM, s_texture_data_width, s_texture_data_height, 0,
897 gl.compressedTexImage3D(target, 0, GL_COMPRESSED_RGBA_BPTC_UNORM, s_texture_data_width, s_texture_data_height, 6,
903 gl.compressedTexImage3D(target, 0, GL_COMPRESSED_RGBA_BPTC_UNORM, s_texture_data_width, s_texture_data_height,
914 switch (target)
917 gl.texImage1D(target, 0, GL_RGBA8, s_texture_data_width, 0, GL_RGBA, GL_UNSIGNED_BYTE, s_texture_data);
923 gl.texImage2D(target, 0, GL_RGBA8, s_texture_data_width, s_texture_data_height, 0, GL_RGBA,
949 gl.texImage3D(target, 0, GL_RGBA8, s_texture_data_width, s_texture_data_height, 6, 0, GL_RGBA,
955 gl.texImage3D(target, 0, GL_RGBA8, s_texture_data_width, s_texture_data_height, s_texture_data_depth, 0,
967 * @param [in] target Target of the texture to be prepared.
972 bool gl4cts::GetTextureSubImage::Functional::check(glw::GLenum target, bool is_compressed)
988 if (GL_TEXTURE_1D != target)
995 if ((GL_TEXTURE_3D == target) || (GL_TEXTURE_2D_ARRAY == target))
1002 if ((GL_TEXTURE_CUBE_MAP == target) || (GL_TEXTURE_CUBE_MAP_ARRAY == target))
1117 << "function has failed with target " << glu::getTextureTargetStr(target) << "."