Lines Matching defs:height
218 int height = config.height;
229 if (width == glu::RenderConfig::DONT_CARE || height == glu::RenderConfig::DONT_CARE)
235 height = (height == glu::RenderConfig::DONT_CARE) ? maxSize : height;
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);