Lines Matching refs:FboSpec
314 struct FboSpec struct
320 …FboSpec(int width_, int height_, int samples_) : width(width_), height(height_), samples(samples_)… in FboSpec() argument
330 const FboSpec& spec);
346 const FboSpec m_spec;
353 const FboSpec& spec) in SizeCase()
439 const FboSpec& defaultSpec,
440 const FboSpec& attachmentSpec);
447 const FboSpec m_defaultSpec;
448 const FboSpec m_attachmentSpec;
455 const FboSpec& defaultSpec, in AttachmentInteractionCase()
456 const FboSpec& attachmentSpec) in AttachmentInteractionCase()
520 const FboSpec spec (width, height, 0); in createFboNoAttachmentTests()
532 const FboSpec specs[] = in createFboNoAttachmentTests()
535 FboSpec(1, 1, 0), in createFboNoAttachmentTests()
536 FboSpec(3, 3, 0), in createFboNoAttachmentTests()
537 FboSpec(15, 15, 0), in createFboNoAttachmentTests()
538 FboSpec(17, 17, 0), in createFboNoAttachmentTests()
539 FboSpec(31, 31, 0), in createFboNoAttachmentTests()
540 FboSpec(33, 33, 0), in createFboNoAttachmentTests()
541 FboSpec(63, 63, 0), in createFboNoAttachmentTests()
542 FboSpec(65, 65, 0), in createFboNoAttachmentTests()
543 FboSpec(127, 127, 0), in createFboNoAttachmentTests()
544 FboSpec(129, 129, 0), in createFboNoAttachmentTests()
545 FboSpec(255, 255, 0), in createFboNoAttachmentTests()
546 FboSpec(257, 257, 0), in createFboNoAttachmentTests()
547 FboSpec(511, 511, 0), in createFboNoAttachmentTests()
548 FboSpec(513, 513, 0), in createFboNoAttachmentTests()
549 FboSpec(1023, 1023, 0), in createFboNoAttachmentTests()
550 FboSpec(1025, 1025, 0), in createFboNoAttachmentTests()
551 FboSpec(2047, 2047, 0), in createFboNoAttachmentTests()
554 FboSpec(15, 511, 0), in createFboNoAttachmentTests()
555 FboSpec(127, 15, 0), in createFboNoAttachmentTests()
556 FboSpec(129, 127, 0), in createFboNoAttachmentTests()
557 FboSpec(511, 127, 0), in createFboNoAttachmentTests()
558 FboSpec(2047, 1025, 0), in createFboNoAttachmentTests()
566 const FboSpec& spec = specs[caseNdx]; in createFboNoAttachmentTests()
583 const FboSpec spec (128, 128, samples); in createFboNoAttachmentTests()
604 const FboSpec spec (width, height, samples); in createFboNoAttachmentTests()
617 const FboSpec specs[][2] = in createFboNoAttachmentTests()
619 { FboSpec(256, 256, 0), FboSpec(128, 128, 1) }, in createFboNoAttachmentTests()
620 { FboSpec(256, 256, 1), FboSpec(128, 128, 0) }, in createFboNoAttachmentTests()
621 { FboSpec(256, 256, 0), FboSpec(512, 512, 2) }, in createFboNoAttachmentTests()
622 { FboSpec(256, 256, 2), FboSpec(128, 512, 0) }, in createFboNoAttachmentTests()
623 { FboSpec(127, 127, 0), FboSpec(129, 129, 0) }, in createFboNoAttachmentTests()
624 { FboSpec(17, 512, 4), FboSpec(16, 16, 2) }, in createFboNoAttachmentTests()
625 { FboSpec(2048, 2048, 4), FboSpec(1, 1, 0) }, in createFboNoAttachmentTests()
626 { FboSpec(1, 1, 0), FboSpec(2048, 2048, 4) }, in createFboNoAttachmentTests()
631 const FboSpec& baseSpec = specs[specNdx][0]; in createFboNoAttachmentTests()
632 const FboSpec& altSpec = specs[specNdx][1]; in createFboNoAttachmentTests()
651 …group->addChild(new SizeCase(testCtx, renderCtx, "width", "Maximum width", FboSpec(SizeCase::US… in createFboNoAttachmentTests()
652 …group->addChild(new SizeCase(testCtx, renderCtx, "height", "Maximum height", FboSpec(128, … in createFboNoAttachmentTests()
653 …group->addChild(new SizeCase(testCtx, renderCtx, "size", "Maximum size", FboSpec(SizeCase::USE… in createFboNoAttachmentTests()
654 …group->addChild(new SizeCase(testCtx, renderCtx, "samples", "Maximum samples", FboSpec(128, … in createFboNoAttachmentTests()
655 …group->addChild(new SizeCase(testCtx, renderCtx, "all", "Maximum size & samples", FboSpec(SizeCas… in createFboNoAttachmentTests()