Home | History | Annotate | Download | only in functional

Lines Matching defs:frag

1368 			std::ostringstream frag;
1369 frag << uniformTypes[ndx].layout << "uniform " << uniformTypes[ndx].precision << " " << uniformTypes[ndx].declaration << " uniformValue" << uniformTypes[ndx].postDeclaration << ";\n";
1370 frag << "void main (void)\n";
1371 frag << "{\n";
1372 frag << " gl_FragColor = vec4(" << uniformTypes[ndx].getter << ");\n";
1373 frag << "}\n";
1376 std::string fragmentSource = frag.str();