Home | History | Annotate | Download | only in opengl

Lines Matching refs:height

213 	int						height				= config.height;
224 if (width == glu::RenderConfig::DONT_CARE || height == glu::RenderConfig::DONT_CARE)
230 height = (height == glu::RenderConfig::DONT_CARE) ? maxSize : height;
240 gl.renderbufferStorageMultisample(GL_RENDERBUFFER, config.numSamples, colorFormat, width, height);
242 gl.renderbufferStorage(GL_RENDERBUFFER, colorFormat, width, height);
256 gl.renderbufferStorageMultisample(GL_RENDERBUFFER, config.numSamples, depthStencilFormat, width, height);
258 gl.renderbufferStorage(GL_RENDERBUFFER, depthStencilFormat, width, height);
285 gl.viewport(0, 0, width, height);
287 m_renderTarget = tcu::RenderTarget(width, height, pixelFormat, depthBits, stencilBits, config.numSamples);