Home | History | Annotate | Download | only in functional

Lines Matching refs:frag

1690 			std::ostringstream frag;
1691 frag << "#version 300 es\n";
1692 frag << uniformTypes[ndx].layout << "uniform " << uniformTypes[ndx].precision << " " << uniformTypes[ndx].declaration << " uniformValue" << uniformTypes[ndx].postDeclaration << ";\n";
1693 frag << "layout(location = 0) out mediump vec4 fragColor;\n";
1694 frag << "void main (void)\n";
1695 frag << "{\n";
1696 frag << " fragColor = vec4(" << uniformTypes[ndx].getter << ");\n";
1697 frag << "}\n";
1700 std::string fragmentSource = frag.str();