Home | History | Annotate | Download | only in glshared

Lines Matching refs:pdec

1167 	static sglr::pdec::ShaderProgramDeclaration createProgramDeclaration	(const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays);
1525 sglr::pdec::ShaderProgramDeclaration DrawTestShaderProgram::createProgramDeclaration (const glu::RenderContext& ctx, const std::vector<AttributeArray*>& arrays)
1527 sglr::pdec::ShaderProgramDeclaration decl;
1530 decl << sglr::pdec::VertexAttribute(std::string("a_") + de::toString(arrayNdx), mapOutputType(arrays[arrayNdx]->getOutputType()));
1532 decl << sglr::pdec::VertexToFragmentVarying(rr::GENERICVECTYPE_FLOAT);
1533 decl << sglr::pdec::FragmentOutput(rr::GENERICVECTYPE_FLOAT);
1535 decl << sglr::pdec::VertexSource(genVertexSource(ctx, arrays));
1536 decl << sglr::pdec::FragmentSource(genFragmentSource(ctx));
1538 decl << sglr::pdec::Uniform("u_coordScale", glu::TYPE_FLOAT);
1539 decl << sglr::pdec::Uniform("u_colorScale", glu::TYPE_FLOAT);