Lines Matching defs:params

331 													 const TestParams	params)
332 : vkt::TestCase(testCtx, name), m_params(params)
532 const TestParams params)
534 , m_params (params)
621 const TestParams params)
623 , m_params (params)
662 TestParams params;
667 params.dstSize = TestParams::TEST_DATA_SIZE;
668 params.bufferAllocator = bufferAllocators[groupData.useDedicatedAllocation];
669 params.useTransferOnlyQueue = groupData.useTransferOnlyQueue;
671 deUint8* data = (deUint8*) params.testData;
672 for (deUint32 b = 0u; b < (params.dstSize * sizeof(params.testData[0])); b++)
678 params.dstOffset = 0;
679 params.size = params.dstSize;
681 currentTestsGroup->addChild(new FillBufferTestCase(testCtx, "fill_" + testName, params));
682 currentTestsGroup->addChild(new UpdateBufferTestCase(testCtx, "update_" + testName, params));
688 params.dstOffset = 0;
689 params.size = 4;
691 currentTestsGroup->addChild(new FillBufferTestCase(testCtx, "fill_" + testName, params));
692 currentTestsGroup->addChild(new UpdateBufferTestCase(testCtx, "update_" + testName, params));
698 params.dstOffset = 4;
699 params.size = 4;
701 currentTestsGroup->addChild(new FillBufferTestCase(testCtx, "fill_" + testName, params));
702 currentTestsGroup->addChild(new UpdateBufferTestCase(testCtx, "update_" + testName, params));
708 params.dstOffset = params.dstSize / 2;
709 params.size = params.dstSize / 2;
711 currentTestsGroup->addChild(new FillBufferTestCase(testCtx, "fill_" + testName, params));
712 currentTestsGroup->addChild(new UpdateBufferTestCase(testCtx, "update_" + testName, params));
721 params.dstSize = TestParams::TEST_DATA_SIZE + i;
722 params.dstOffset = j * sizeof(deUint32);
723 params.size = VK_WHOLE_SIZE;
725 const VkDeviceSize extraBytes = params.dstSize % sizeof(deUint32);
726 const std::string name = "fill_buffer_vk_whole_size_" + de::toString(extraBytes) + "_extra_bytes_offset_" + de::toString(params.dstOffset);
728 currentTestsGroup->addChild(new FillWholeBufferTestCase{testCtx, name, params});