Home | History | Annotate | Download | only in egl

Lines Matching defs:resName

1221 		const std::string resName = (m_isUBO) ? "ub_in" : "sb_in";
1226 << "} " << resName << "[" << s_numBindings << "];\n";
1229 ? " color.x = " + resName + "[0].color_out[u_index];\n"
1230 : " color[u_index] = " + resName + "[0].color_out[0];\n";
1260 const std::string resName = (m_isUBO) ? "ub_in" : "sb_in";
1265 << "} " << resName << "[" << s_numBindings << "];\n";
1268 ? " sb_out.values.x = " + resName + "[0].values[u_index] * float(groupNdx);\n"
1269 : " sb_out.values[u_index] = " + resName + "[0].values.x * float(groupNdx);\n";