Lines Matching defs:from
259 * @param [in] from substring to be replaced
262 void CullDistance::Utilities::replaceAll(std::string& str, const std::string& from, const std::string& to)
264 for (size_t start_pos = str.find(from, 0); start_pos != std::string::npos; start_pos = str.find(from, start_pos))
266 str.replace(start_pos, from.length(), to);
472 * object we will need to capture data from the programs */
1008 * from the texture, that the writes have been issued to earlier. */
1109 * @param [in] fetch_culldistance_from_fs fetch check sum of gl_ClipDistance and gl_CullDistance from fragment shader
1805 * different from rendering vertex position.
1866 /* Clear data left from previous tests. */
2213 * @param [in] fetch_culldistance_from_fs Indicate whether to fetch gl_CullDistance and gl_ClipDistance values from the fragment shader
2362 /* Skip left distances from check */
2467 /* Check fetched values from the shader (Point 2 of Basic Outline : "Use program that...") */
2519 TCU_FAIL("Culled distances returned from fragment shader dose not match expected values.");
2765 * distances written by the vertex shader by reading them from the built-in
2869 /** Returns pixel red component read from texture at position x, y.
2871 * @param x x-coordinate to read pixel color component from
2872 * @param y y-coordinate to read pixel color component from
2897 /* Read vertex from texture */