Home
last modified time | relevance | path

Searched refs:swizzleIndices (Results 1 – 4 of 4) sorted by relevance

/external/deqp/modules/gles3/scripts/
Dgen-swizzle-math-operations.py168 for swizzleIndices in getSwizzlesForWidth(scalarSize):
169 swizzle1 = "".join(map(lambda x: swizzleComponents[x], swizzleIndices))
172 rotatedSwizzleIndices = rotate(swizzleIndices, 1)
177 …outputs = map(lambda x, y: OPERATORS[operator](x.swizzle(swizzleIndices), y.swizzle(rotatedSwizzle…
Dgen-swizzles.py259 for swizzleIndices in getSwizzlesForWidth(scalarSize):
260 swizzle = "".join(map(lambda x: swizzleComponents[x], swizzleIndices))
264 outputs = map(lambda x: x.swizzle(swizzleIndices), inputs)
/external/deqp/modules/gles2/scripts/
Dgen-swizzles.py255 for swizzleIndices in getSwizzlesForWidth(scalarSize):
256 swizzle = "".join(map(lambda x: swizzleComponents[x], swizzleIndices))
260 outputs = map(lambda x: x.swizzle(swizzleIndices), inputs)
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DBlit11.cpp869 unsigned int *swizzleIndices = static_cast<unsigned int *>(mappedResource.pData); in swizzleTexture() local
870 swizzleIndices[0] = GetSwizzleIndex(swizzleTarget.swizzleRed); in swizzleTexture()
871 swizzleIndices[1] = GetSwizzleIndex(swizzleTarget.swizzleGreen); in swizzleTexture()
872 swizzleIndices[2] = GetSwizzleIndex(swizzleTarget.swizzleBlue); in swizzleTexture()
873 swizzleIndices[3] = GetSwizzleIndex(swizzleTarget.swizzleAlpha); in swizzleTexture()