Lines Matching defs:width
217 int width = config.width;
229 if (width == glu::RenderConfig::DONT_CARE || height == glu::RenderConfig::DONT_CARE)
234 width = (width == glu::RenderConfig::DONT_CARE) ? maxSize : width;
245 gl.renderbufferStorageMultisample(GL_RENDERBUFFER, config.numSamples, colorFormat, width, height);
247 gl.renderbufferStorage(GL_RENDERBUFFER, colorFormat, width, height);
261 gl.renderbufferStorageMultisample(GL_RENDERBUFFER, config.numSamples, depthStencilFormat, width, height);
263 gl.renderbufferStorage(GL_RENDERBUFFER, depthStencilFormat, width, height);
290 gl.viewport(0, 0, width, height);
292 m_renderTarget = tcu::RenderTarget(width, height, pixelFormat, depthBits, stencilBits, config.numSamples);