Lines Matching refs:dst
68 // \note src and dst can point to same memory as long as there is 1-to-1 correspondence between
70 static void sRGBAToLinear (const tcu::PixelBufferAccess& dst, const tcu::ConstPixelBufferAccess& src)
77 dst.setPixel(tcu::sRGBToLinear(src.getPixel(x, y)), x, y);
271 log << TestLog::Message << "RGB dst func = " << getBlendFactorName(paramSet.dstFuncRGB) << TestLog::EndMessage;
274 log << TestLog::Message << "Alpha dst func = " << getBlendFactorName(paramSet.dstFuncAlpha) << TestLog::EndMessage;
408 // Test all blend equation, src blend function, dst blend function combinations. RGB and alpha modes are the same.
420 const EnumGL& dst = blendFunctions[dstFuncNdx];
429 ", dst funcs " + getBlendFactorName(dst.glValue);
432 name += string("") + "_" + src.nameStr + "_" + dst.nameStr;
435 paramSets.push_back(BlendParams(eq.glValue, src.glValue, dst.glValue, eq.glValue, src.glValue, dst.glValue, defaultBlendColor));
441 // Test all RGB src, alpha src and RGB dst, alpha dst combinations. Equations are ADD.
442 // \note For all RGB src, alpha src combinations, also test a couple of different RGBA dst functions, and vice versa.
448 TestCaseGroup* dstGroup = new TestCaseGroup(m_context, "dst", "Destination functions");
460 const char* dstOrSrcStr = isSrc ? "src" : "dst";
475 // Swap src and dst params if this is a dst case.
490 // Test all RGB and alpha equation combinations. Src and dst funcs are ONE for both.