Home
last modified time | relevance | path

Searched refs:componentOffset (Results 1 – 3 of 3) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineVertexInputTests.cpp1401 …utValueIntPacked(deUint8* destPtr, deUint32& packedFormat, deUint32& componentOffset, VkFormat for… in writeVertexInputValueIntPacked() argument
1407 componentOffset -= componentWidth; in writeVertexInputValueIntPacked()
1408 packedFormat |= (((deUint32)value & usedBits) << componentOffset); in writeVertexInputValueIntPacked()
1470 deUint32 componentOffset = getVertexFormatSize(attribute.vkDescription.format) * 8; in writeVertexInputValue() local
1502 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
1514 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
1535 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
1542 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
1549 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
/external/swiftshader/src/Pipeline/
DSpirvShader.cpp1343 uint32_t componentOffset = 0; in WalkLiteralAccessChain() local
1359 componentOffset += offsetIntoStruct; in WalkLiteralAccessChain()
1370 componentOffset += stride * indexes[i]; in WalkLiteralAccessChain()
1380 return componentOffset; in WalkLiteralAccessChain()
/external/deqp-deps/glslang/glslang/HLSL/
DhlslParseHelper.cpp6230 int componentOffset = 0; in handlePackOffset() local
6232 case 'x': componentOffset = 0; break; in handlePackOffset()
6233 case 'y': componentOffset = 4; break; in handlePackOffset()
6234 case 'z': componentOffset = 8; break; in handlePackOffset()
6235 case 'w': componentOffset = 12; break; in handlePackOffset()
6237 componentOffset = -1; in handlePackOffset()
6240 if (componentOffset < 0 || component->size() > 1) { in handlePackOffset()
6244 qualifier.layoutOffset += componentOffset; in handlePackOffset()