Lines Matching refs:varying
225 // varying. In that case it uses that variable and we do not pass a second argument for _coords.
241 // varying, so this only has to access it. Add a float2 _coords variable that maps to the
242 // associated varying and replaces the absent 2nd argument to the fp's function.
243 GrShaderVar varying = fFPCoordsMap[&fp].coordsVarying;
245 switch (varying.getType()) {
250 // Just point the local coords to the varying
251 sampleCoords = varying.getName().c_str();
255 // varying, and since we won't actually have a function parameter for local
259 varying.getName().c_str(),
260 varying.getName().c_str());
263 SkDEBUGFAILF("Unexpected varying type for coord: %s %d\n",
264 varying.getName().c_str(),
265 (int)varying.getType());