Lines Matching defs:ctx
1141 DrawTestShaderProgram (const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays);
1147 static std::string genVertexSource (const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays);
1148 static std::string genFragmentSource (const glu::RenderContext& ctx);
1153 static sglr::pdec::ShaderProgramDeclaration createProgramDeclaration (const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays);
1160 DrawTestShaderProgram::DrawTestShaderProgram (const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays)
1161 : sglr::ShaderProgram (createProgramDeclaration(ctx, arrays))
1275 std::string DrawTestShaderProgram::genVertexSource (const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays)
1280 generateShaderParams(params, ctx.getType());
1390 std::string DrawTestShaderProgram::genFragmentSource (const glu::RenderContext& ctx)
1394 generateShaderParams(params, ctx.getType());
1511 sglr::pdec::ShaderProgramDeclaration DrawTestShaderProgram::createProgramDeclaration (const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays)
1521 decl << sglr::pdec::VertexSource(genVertexSource(ctx, arrays));
1522 decl << sglr::pdec::FragmentSource(genFragmentSource(ctx));