Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineVertexInputTests.cpp1398 …utValueIntPacked(deUint8* destPtr, deUint32& packedFormat, deUint32& componentOffset, VkFormat for… in writeVertexInputValueIntPacked() argument
1404 componentOffset -= componentWidth; in writeVertexInputValueIntPacked()
1405 packedFormat |= (((deUint32)value & usedBits) << componentOffset); in writeVertexInputValueIntPacked()
1467 deUint32 componentOffset = getVertexFormatSize(attribute.vkDescription.format) * 8; in writeVertexInputValue() local
1499 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
1511 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
1532 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
1539 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
1546 …writeVertexInputValueIntPacked(destPtr, packedFormat32, componentOffset, attribute.vkDescription.f… in writeVertexInputValue()
/external/deqp-deps/glslang/hlsl/
DhlslParseHelper.cpp6061 int componentOffset = 0; in handlePackOffset() local
6063 case 'x': componentOffset = 0; break; in handlePackOffset()
6064 case 'y': componentOffset = 4; break; in handlePackOffset()
6065 case 'z': componentOffset = 8; break; in handlePackOffset()
6066 case 'w': componentOffset = 12; break; in handlePackOffset()
6068 componentOffset = -1; in handlePackOffset()
6071 if (componentOffset < 0 || component->size() > 1) { in handlePackOffset()
6075 qualifier.layoutOffset += componentOffset; in handlePackOffset()