Lines Matching refs:params
186 ImageSubresourceLayoutCase (tcu::TestContext& testCtx, const std::string& name, const TestParams& params);
203 ImageSubresourceLayoutInstance (Context& context, const TestParams& params);
212 ImageSubresourceLayoutCase::ImageSubresourceLayoutCase (tcu::TestContext& testCtx, const std::string& name, const TestParams& params)
214 , m_params (params)
253 ImageSubresourceLayoutInstance::ImageSubresourceLayoutInstance (Context& context, const TestParams& params)
255 , m_params (params)
656 ImageSubresourceLayoutInvarianceInstance (Context& context, const TestParams& params);
665 ImageSubresourceLayoutInvarianceInstance::ImageSubresourceLayoutInvarianceInstance(Context& context, const TestParams& params)
667 , m_params (params)
755 ImageSubresourceLayoutInvarianceCase (tcu::TestContext& testCtx, const std::string& name, const TestParams& params);
762 ImageSubresourceLayoutInvarianceCase::ImageSubresourceLayoutInvarianceCase(tcu::TestContext& testCtx, const std::string& name, const TestParams& params)
763 : ImageSubresourceLayoutCase(testCtx, name, params)
980 TestParams params;
981 params.imageFormat = format;
982 params.imageType = imgClass.type;
983 params.mipLevels = mipLevel.maxLevels;
984 params.dimensions = getDefaultDimensions(imgClass.type, imgClass.array);
985 params.imageOffset = false;
987 mipGroup->addChild(new ImageSubresourceLayoutCase(testCtx, name, params));
989 params.imageOffset = true;
991 mipGroup->addChild(new ImageSubresourceLayoutCase(testCtx, name+"_offset", params));
1004 TestParams params;
1005 params.imageOffset = false;
1006 params.mipLevels = 1;
1013 params.imageFormat = testFormats[formatIdx];
1014 params.imageType = imgClass.type;
1015 params.dimensions = getDefaultDimensions(imgClass.type, imgClass.array);
1016 params.dimensions.width += formatIdx;
1018 std::string name = getFormatName(params.imageFormat);
1021 invarianceGroup->addChild(new ImageSubresourceLayoutInvarianceCase(testCtx, name, params));