Lines Matching refs:RenderConfig
78 deUint32 chooseColorFormat (const glu::RenderConfig& config) in chooseColorFormat()
97 if (config.redBits != glu::RenderConfig::DONT_CARE && in chooseColorFormat()
101 if (config.greenBits != glu::RenderConfig::DONT_CARE && in chooseColorFormat()
105 if (config.blueBits != glu::RenderConfig::DONT_CARE && in chooseColorFormat()
109 if (config.alphaBits != glu::RenderConfig::DONT_CARE && in chooseColorFormat()
119 deUint32 chooseDepthStencilFormat (const glu::RenderConfig& config) in chooseDepthStencilFormat()
138 if (config.depthBits != glu::RenderConfig::DONT_CARE && in chooseDepthStencilFormat()
142 if (config.stencilBits != glu::RenderConfig::DONT_CARE && in chooseDepthStencilFormat()
152 FboRenderContext::FboRenderContext (RenderContext* context, const RenderConfig& config) in FboRenderContext()
170 FboRenderContext::FboRenderContext (const ContextFactory& factory, const RenderConfig& config, cons… in FboRenderContext()
179 RenderConfig nativeRenderConfig; in FboRenderContext()
210 void FboRenderContext::createFramebuffer (const RenderConfig& config) in createFramebuffer()
229 if (width == glu::RenderConfig::DONT_CARE || height == glu::RenderConfig::DONT_CARE) in createFramebuffer()
234 width = (width == glu::RenderConfig::DONT_CARE) ? maxSize : width; in createFramebuffer()
235 height = (height == glu::RenderConfig::DONT_CARE) ? maxSize : height; in createFramebuffer()