Lines Matching defs:width

30 /* Uncomment this if SubImageErrorsTest crashes during negative test of TextureSubImage (negative value width/height/depth passed to the function). */
1507 /** @brief Height, width or depth of reference data to be teted.
1509 * @return Height, width or depth.
1747 glw::GLenum internalformat, glw::GLsizei width,
1757 gl.texStorage1D(target, levels, internalformat, width);
1760 gl.texStorage2D(target, levels, internalformat, width, height);
1763 gl.texStorage3D(target, levels, internalformat, width, height, depth);
1778 gl.textureStorage1D(texture, levels, internalformat, width);
1781 gl.textureStorage2D(texture, levels, internalformat, width, height);
1784 gl.textureStorage3D(texture, levels, internalformat, width, height, depth);
1796 << " width=" << width << " height=" << height << " depth=" << depth
1815 glw::GLsizei width, glw::GLsizei height, glw::GLsizei depth,
1825 gl.textureSubImage1D(texture, level, 0, width, format, type, data);
1828 gl.textureSubImage2D(texture, level, 0, 0, width, height, format, type, data);
1831 gl.textureSubImage3D(texture, level, 0, 0, 0, width, height, depth, format, type, data);
1842 << " during test with level " << level << ", width=" << width << ", height=" << height << ", depth=" << depth
1859 gl.texSubImage1D(target, level, 0, width, format, type, data);
1862 gl.texSubImage2D(target, level, 0, 0, width, height, format, type, data);
1865 gl.texSubImage3D(target, level, 0, 0, 0, width, height, depth, format, type, data);
2803 /** @brief Height, width or depth of reference data to be teted.
2805 * @return Height, width or depth.
3182 void StorageMultisampleTest<T, S, N, D>::InputTextureImage(const glw::GLenum internal_format, const glw::GLuint width,
3195 gl.texImage2D(InputTextureTarget(), 0, internal_format, width, height, 0, format, type, data);
3198 gl.texImage3D(InputTextureTarget(), 0, internal_format, width, height, depth, 0, format, type, data);
5637 glw::GLint x, glw::GLint y, glw::GLsizei width)
5645 gl.copyTextureSubImage1D(texture, level, xoffset, x, y, width);
5669 glw::GLint yoffset, glw::GLint x, glw::GLint y, glw::GLsizei width,
5678 gl.copyTextureSubImage2D(texture, level, xoffset, yoffset, x, y, width, height);
5703 glw::GLsizei width, glw::GLsizei height)
5711 gl.copyTextureSubImage3D(texture, level, xoffset, yoffset, zoffset, x, y, width, height);
9206 /* Check that INVALID_VALUE is generated by TextureStorage1D if width or
9213 is_ok &= CheckErrorAndLog(m_context, GL_INVALID_VALUE, "glTextureStorage1D", "width is less than 1.");
9217 is greater than log2(width)+1. */
9221 "levels is greater than log2(width)+1.");
9264 /* Check that INVALID_VALUE is generated by TextureStorage2D if width,
9271 is_ok &= CheckErrorAndLog(m_context, GL_INVALID_VALUE, "glTextureStorage2D", "width is less than 1.");
9279 log2(width)+1. */
9283 "target is TEXTURE_1D_ARRAY and levels is greater than log2(width)+1.");
9288 than log2(max(width, height))+1. */
9292 "target is TEXTURE_2D and levels is greater than log2(max(width, height))+1.");
9335 /* Check that INVALID_VALUE is generated by TextureStorage3D if width,
9342 is_ok &= CheckErrorAndLog(m_context, GL_INVALID_VALUE, "glTextureStorage3D", "width is less than 1.");
9353 log2(max(width, height, depth))+1. */
9357 "target is TEXTURE_3D and levels is greater than log2(max(width, height, depth))+1.");
9363 log2(max(width, height))+1. */
9367 "target is TEXTURE_2D_ARRAY and levels is greater than log2(max(width, height))+1.");
9412 width or height are less than 1 or greater than the value of
9417 CheckErrorAndLog(m_context, GL_INVALID_VALUE, "glTextureStorage2DMultisample", "width is less than 1.");
9425 "width is greater than the value of MAX_TEXTURE_SIZE.");
9491 width or height are less than 1 or greater than the value of
9496 CheckErrorAndLog(m_context, GL_INVALID_VALUE, "glTextureStorage3DMultisample", "width is less than 1.");
9504 "width is greater than the value of MAX_TEXTURE_SIZE.");
10190 xoffset<-b, or if (xoffset+width)>(w-b), where w is the TEXTURE_WIDTH,
10191 and b is the width of the TEXTURE_BORDER of the texture image being
10192 modified. Note that w includes twice the border width. */
10196 "xoffset<-b, where b is the width of the TEXTURE_BORDER.");
10201 "(xoffset+width)>(w-b), where w is the TEXTURE_WIDTH, b is the width of the TEXTURE_BORDER.");
10204 /*Check that INVALID_VALUE is generated by TextureSubImage1D if width is less than 0. */
10208 is_ok &= CheckErrorAndLog(m_context, GL_INVALID_VALUE, "glTextureSubImage1D", "width is less than 0.");
10410 xoffset<-b, (xoffset+width)>(w-b), yoffset<-b, or
10412 TEXTURE_HEIGHT, and b is the border width of the texture image being
10413 modified. Note that w and h include twice the border width. */
10418 "xoffset<-b, where b is the width of the TEXTURE_BORDER.");
10424 "(xoffset+width)>(w-b), where w is the TEXTURE_WIDTH, b is the width of the TEXTURE_BORDER.");
10435 "(yoffset+height)>(h-b), where h is the TEXTURE_HEIGHT, b is the width of the TEXTURE_BORDER.");
10438 /*Check that INVALID_VALUE is generated by TextureSubImage2D if width or height is less than 0. */
10443 is_ok &= CheckErrorAndLog(m_context, GL_INVALID_VALUE, "glTextureSubImage2D", "width is less than 0.");
10648 xoffset<-b, (xoffset+width)>(w-b), yoffset<-b, or
10651 and b is the border width of the texture image being modified. Note
10652 that w, h, and d include twice the border width. */
10657 "xoffset<-b, where b is the width of the TEXTURE_BORDER.");
10663 "(xoffset+width)>(w-b), where w is the TEXTURE_WIDTH, b is the width of the TEXTURE_BORDER.");
10668 "yoffset<-b, where b is the width of the TEXTURE_BORDER.");
10674 "(yoffset+height)>(h-b), where h is the TEXTURE_HEIGHT, b is the width of the TEXTURE_BORDER.");
10685 "(zoffset+width)>(d-b), where d is the TEXTURE_DEPTH, b is the width of the TEXTURE_BORDER.");
10688 /*Check that INVALID_VALUE is generated by TextureSubImage3D if width or height or depth is less than 0. */
10693 is_ok &= CheckErrorAndLog(m_context, GL_INVALID_VALUE, "glTextureSubImage1D", "width is less than 0.");
11591 xoffset<0, or (xoffset+width)>w, where w is the TEXTURE_WIDTH of the
11600 "(xoffset+width)>w, where w is the TEXTURE_WIDTH of the texture image being modified.");
11686 xoffset<0, (xoffset+width)>w, yoffset<0, or (yoffset+height)>0, where w
11696 "(xoffset+width)>w, where w is the TEXTURE_WIDTH of the texture image being modified.");
11790 xoffset<0, (xoffset+width)>w, yoffset<0, (yoffset+height)>h, zoffset<0,
11793 that w, h, and d include twice the border width. */
11801 "(xoffset+width)>w, where w is the TEXTURE_WIDTH of the texture image being modified.");