Lines Matching refs:renderCtx
40 Shader::Shader (const RenderContext& renderCtx, ShaderType shaderType)
41 : m_gl (renderCtx.getFunctions())
234 Program::Program (const RenderContext& renderCtx)
235 : m_gl (renderCtx.getFunctions())
250 Program::Program (const RenderContext& renderCtx, deUint32 program)
251 : m_gl (renderCtx.getFunctions())
322 ProgramPipeline::ProgramPipeline (const RenderContext& renderCtx)
323 : m_gl (renderCtx.getFunctions())
368 ShaderProgram::ShaderProgram (const RenderContext& renderCtx, const ProgramSources& sources)
369 : m_program(renderCtx.getFunctions())
371 init(renderCtx.getFunctions(), sources);
374 ShaderProgram::ShaderProgram (const RenderContext& renderCtx, const ProgramBinaries& binaries)
375 : m_program(renderCtx.getFunctions())
377 init(renderCtx.getFunctions(), binaries);