Lines Matching refs:stride
92 vk::VkVertexInputBindingDescription makeBindingDescription(uint32_t binding, uint32_t stride, vk::VkVertexInputRate inputRate)
97 bindingDescription.stride = stride;
356 log << tcu::TestLog::Message << "binding " << binding.binding << ", stride " << binding.stride << ", inputRate " << binding.inputRate << tcu::TestLog::EndMessage;
520 log << tcu::TestLog::Message << "binding " << i << ", buffer " << buffers[i] << ", offset " << offsets[i] << ", size " << sizes[i] << ", stride " << strides[i] << tcu::TestLog::EndMessage;
885 // random strides multiplyied later by 4, special value for atributes stride
890 vk::VkDeviceSize stride = rnd.getUint64() % 30;
891 while (stride == 0)
892 stride = rnd.getUint64() % 30;
893 return stride;
900 const deUint32 stride = deUint32(strides[i]);
902 std::vector<float> points (offset + sourceSize * (compCount + stride));
910 auto k = offset + j * (compCount + stride);
913 for (uint32_t s = 0; s < stride; ++s)
919 vk::VkDeviceSize size = (offset + allocSize * (compCount + stride)) * sizeof(float);
924 sizes[i] = m_params.wholeSize ? VK_WHOLE_SIZE : ((compCount + stride) * returnSize * sizeof(float));
925 strides[i] = (compCount + stride) * sizeof(float);