Lines Matching refs:pdec
697 static sglr::pdec::ShaderProgramDeclaration createProgramDeclaration (const glu::RenderContext& ctx, const std::vector<ContextArray*>& arrays);
1060 sglr::pdec::ShaderProgramDeclaration ContextShaderProgram::createProgramDeclaration (const glu::RenderContext& ctx, const std::vector<ContextArray*>& arrays)
1062 sglr::pdec::ShaderProgramDeclaration decl;
1065 decl << sglr::pdec::VertexAttribute(std::string("a_") + de::toString(arrayNdx), mapOutputType(arrays[arrayNdx]->getOutputType()));
1067 decl << sglr::pdec::VertexToFragmentVarying(rr::GENERICVECTYPE_FLOAT);
1068 decl << sglr::pdec::FragmentOutput(rr::GENERICVECTYPE_FLOAT);
1070 decl << sglr::pdec::VertexSource(genVertexSource(ctx, arrays));
1071 decl << sglr::pdec::FragmentSource(genFragmentSource(ctx));
1073 decl << sglr::pdec::Uniform("u_coordScale", glu::TYPE_FLOAT);
1074 decl << sglr::pdec::Uniform("u_colorScale", glu::TYPE_FLOAT);