Lines Matching defs:res
524 ostringstream res;
529 res << glu::getGLSLVersionDeclaration(m_targetVersion) << "\n";
532 res << "precision highp float;\n";
533 res << "precision highp int;\n";
534 res << "\n";
535 res << vtxIn << " highp vec4 dEQP_Position;\n";
543 res << vtxIn << " " << typeStr << " a_" << val.valueName << ";\n";
546 res << vtxOut << " " << typeStr << " " << val.valueName << ";\n";
548 res << vtxOut << " " << typeStr << " v_" << val.valueName << ";\n";
551 res << "\n";
556 res << "void main()\n";
557 res << "{\n";
558 res << " gl_Position = dEQP_Position;\n";
566 res << " " << name << " = a_" << name << ";\n";
568 res << " v_" << name << " = a_" << name << ";\n";
572 res << "}\n";
573 return res.str();