Lines Matching refs:params
815 static string getName (const RenderableParams& params)
817 return formatName(params.format);
819 static string getDescription (const RenderableParams& params)
821 return formatDesc(params.format);
828 RenderableTest (Context& group, const Params& params)
829 : ParamTest<RenderableParams> (group, params) {}
862 static string getName (const AttachmentParams& params);
863 static string getDescription (const AttachmentParams& params)
865 return getName(params);
869 string AttachmentParams::getName (const AttachmentParams& params)
871 return (attTypeName(params.color0Kind) + "_" +
872 attTypeName(params.colornKind) + "_" +
873 attTypeName(params.depthKind) + "_" +
874 attTypeName(params.stencilKind));
881 AttachmentTest (Context& group, Params& params)
882 : ParamTest<AttachmentParams> (group, params) {}
1014 const RenderableParams params = { it->attPoint, GL_RENDERBUFFER, *it2 };
1015 rbAttTests->addChild(new RenderableTest(*this, params));
1021 const RenderableParams params = { it->attPoint, GL_TEXTURE, *it2 };
1022 texAttTests->addChild(new RenderableTest(*this, params));
1045 AttachmentParams params = { *col0, *coln, *dep, *stc };
1046 attCombTests->addChild(new AttachmentTest(*this, params));