Home | History | Annotate | Download | only in layers

Lines Matching refs:bufferOffset

999             // BufferOffset must be a multiple of the calling command's VkImage parameter's texel size
1001 if (vk_safe_modulo(pRegions[i].bufferOffset, texel_size) != 0) {
1004 "%s(): pRegion[%d] bufferOffset 0x%" PRIxLEAST64
1006 function, i, pRegions[i].bufferOffset, texel_size);
1008 // BufferOffset must be a multiple of 4
1009 if (vk_safe_modulo(pRegions[i].bufferOffset, 4) != 0) {
1012 "%s(): pRegion[%d] bufferOffset 0x%" PRIxLEAST64 " must be a multiple of 4", function, i,
1013 pRegions[i].bufferOffset);