Lines Matching defs:height
5902 /* Check that INVALID_VALUE error is generated by InvalidateNamedFramebufferSubData if numAttachments, width, or height is negative. */
5913 is_ok &= ExpectError(GL_INVALID_VALUE, "InvalidateNamedFramebufferSubData", "height is negative.");
8059 glw::GLuint height;
8073 test_cases[i].height))
8077 test_cases[i].height);
8120 * @param [in] height Height of the framebuffer.
8125 glw::GLuint height)
8139 gl.namedRenderbufferStorage(m_rbo, format.internalformat, width, height);
8146 << glu::getInternalFormatParameterStr(format.internalformat) << ", width was " << width << ", height was "
8147 << height << "." << tcu::TestLog::EndMessage;
8172 << glu::getInternalFormatParameterStr(format.internalformat) << ", width was " << width << ", height was "
8173 << height << "." << tcu::TestLog::EndMessage;
8210 * @param [in] height Height of the framebuffer.
8215 glw::GLuint height)
8220 glw::GLuint size = width * height;
8228 gl.readPixels(0, 0, width, height, GL_RGBA_INTEGER, GL_INT, &color[0]);
8248 << ", width was " << width << ", height was " << height << "." << tcu::TestLog::EndMessage;
8259 gl.readPixels(0, 0, width, height, GL_RGBA, GL_FLOAT, &color[0]);
8279 << ", width was " << width << ", height was " << height << "." << tcu::TestLog::EndMessage;
8292 gl.readPixels(0, 0, width, height, GL_DEPTH_COMPONENT, GL_FLOAT, &depth[0]);
8303 << width << ", height was " << height << "." << tcu::TestLog::EndMessage;
8314 gl.readPixels(0, 0, width, height, GL_STENCIL_INDEX, GL_INT, &stencil[0]);
8325 << width << ", height was " << height << "." << tcu::TestLog::EndMessage;
8474 glw::GLuint height;
8490 test_cases[i].height, k))
8496 Blit(test_cases[i].width, test_cases[i].height);
8499 test_cases[i].height);
8543 * @param [in] height Height of the framebuffer.
8548 glw::GLuint width, glw::GLuint height, glw::GLsizei samples)
8567 gl.namedRenderbufferStorageMultisample(m_rbo[i], 0, format.internalformat, width, height);
8575 << format.internalformat_name << ", samples was " << 0 << ", width was " << width << ", height was "
8576 << height << "." << tcu::TestLog::EndMessage;
8583 gl.namedRenderbufferStorageMultisample(m_rbo[i], samples, format.internalformat, width, height);
8592 << ", height was " << height << "." << tcu::TestLog::EndMessage;
8620 << ", height was " << height << "." << tcu::TestLog::EndMessage;
8647 * @param [in] height Height of the framebuffer.
8651 void StorageMultisampleTest::Blit(glw::GLuint width, glw::GLuint height)
8657 gl.blitFramebuffer(0, 0, width, height, 0, 0, width, height,
8692 * @param [in] height Height of the framebuffer.
8697 glw::GLuint width, glw::GLuint height)
8702 glw::GLuint size = width * height;
8710 gl.readPixels(0, 0, width, height, GL_RGBA_INTEGER, GL_INT, &color[0]);
8730 << ", width was " << width << ", height was " << height << "." << tcu::TestLog::EndMessage;
8741 gl.readPixels(0, 0, width, height, GL_RGBA, GL_FLOAT, &color[0]);
8761 << ", width was " << width << ", height was " << height << "." << tcu::TestLog::EndMessage;
8774 gl.readPixels(0, 0, width, height, GL_DEPTH_COMPONENT, GL_FLOAT, &depth[0]);
8786 << width << ", height was " << height << "." << tcu::TestLog::EndMessage;
8797 gl.readPixels(0, 0, width, height, GL_STENCIL_INDEX, GL_INT, &stencil[0]);
8809 << width << ", height was " << height << "." << tcu::TestLog::EndMessage;
9053 << glu::getInternalFormatParameterStr(internalformats[i]) << ", width = 1, height = 2."
9067 << glu::getInternalFormatParameterStr(internalformats[i]) << ", width = 1, height = 2."
9243 either of width or height is negative, or greater than the value of
9251 is_ok &= ExpectError(GL_INVALID_VALUE, "NamedRenderbufferStorage", "either of height is negative.");
9432 either of width or height is negative, or greater than the value of
9440 is_ok &= ExpectError(GL_INVALID_VALUE, "NamedRenderbufferStorageMultisample", "either of height is negative.");