Lines Matching refs:pdec
1153 static sglr::pdec::ShaderProgramDeclaration createProgramDeclaration (const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays);
1511 sglr::pdec::ShaderProgramDeclaration DrawTestShaderProgram::createProgramDeclaration (const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays)
1513 sglr::pdec::ShaderProgramDeclaration decl;
1516 decl << sglr::pdec::VertexAttribute(std::string("a_") + de::toString(arrayNdx), mapOutputType(arrays[arrayNdx]->getOutputType()));
1518 decl << sglr::pdec::VertexToFragmentVarying(rr::GENERICVECTYPE_FLOAT);
1519 decl << sglr::pdec::FragmentOutput(rr::GENERICVECTYPE_FLOAT);
1521 decl << sglr::pdec::VertexSource(genVertexSource(ctx, arrays));
1522 decl << sglr::pdec::FragmentSource(genFragmentSource(ctx));
1524 decl << sglr::pdec::Uniform("u_coordScale", glu::TYPE_FLOAT);
1525 decl << sglr::pdec::Uniform("u_colorScale", glu::TYPE_FLOAT);