Home | History | Annotate | Download | only in egl

Lines Matching refs:Spec

317 	struct Spec
327 MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description);
333 Spec m_spec;
344 MemoryStressCase::MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description)
346 , m_spec (spec)
476 MemoryStressCase::Spec spec;
478 spec.types = OBJECTTYPE_PBUFFER;
479 spec.minWidth = 256;
480 spec.minHeight = 256;
481 spec.maxWidth = 256;
482 spec.maxHeight = 256;
483 spec.use = false;
485 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_256x256", "PBuffer allocation stress tests"));
490 MemoryStressCase::Spec spec;
492 spec.types = OBJECTTYPE_PBUFFER;
493 spec.minWidth = 256;
494 spec.minHeight = 256;
495 spec.maxWidth = 256;
496 spec.maxHeight = 256;
497 spec.use = true;
499 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_256x256_use", "PBuffer allocation stress tests"));
504 MemoryStressCase::Spec spec;
506 spec.types = OBJECTTYPE_PBUFFER;
507 spec.minWidth = 1024;
508 spec.minHeight = 1024;
509 spec.maxWidth = 1024;
510 spec.maxHeight = 1024;
511 spec.use = false;
513 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_1024x1024", "PBuffer allocation stress tests"));
518 MemoryStressCase::Spec spec;
520 spec.types = OBJECTTYPE_PBUFFER;
521 spec.minWidth = 1024;
522 spec.minHeight = 1024;
523 spec.maxWidth = 1024;
524 spec.maxHeight = 1024;
525 spec.use = true;
527 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_1024x1024_use", "PBuffer allocation stress tests"));
532 MemoryStressCase::Spec spec;
534 spec.types = OBJECTTYPE_PBUFFER;
535 spec.minWidth = 64;
536 spec.minHeight = 64;
537 spec.maxWidth = 1024;
538 spec.maxHeight = 1024;
539 spec.use = false;
541 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer", "PBuffer allocation stress tests"));
546 MemoryStressCase::Spec spec;
548 spec.types = OBJECTTYPE_PBUFFER;
549 spec.minWidth = 64;
550 spec.minHeight = 64;
551 spec.maxWidth = 1024;
552 spec.maxHeight = 1024;
553 spec.use = true;
555 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_use", "PBuffer allocation stress tests"));
560 MemoryStressCase::Spec spec;
562 spec.types = OBJECTTYPE_CONTEXT;
563 spec.minWidth = 1024;
564 spec.minHeight = 1024;
565 spec.maxWidth = 1024;
566 spec.maxHeight = 1024;
567 spec.use = false;
569 addChild(new MemoryStressCase(m_eglTestCtx, spec, "context", "Context allocation stress tests"));
574 MemoryStressCase::Spec spec;
576 spec.types = OBJECTTYPE_CONTEXT;
577 spec.minWidth = 1024;
578 spec.minHeight = 1024;
579 spec.maxWidth = 1024;
580 spec.maxHeight = 1024;
581 spec.use = true;
583 addChild(new MemoryStressCase(m_eglTestCtx, spec, "context_use", "Context allocation stress tests"));
588 MemoryStressCase::Spec spec;
590 spec.types = (ObjectType)(OBJECTTYPE_PBUFFER|OBJECTTYPE_CONTEXT);
591 spec.minWidth = 64;
592 spec.minHeight = 64;
593 spec.maxWidth = 1024;
594 spec.maxHeight = 1024;
595 spec.use = false;
597 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_context", "PBuffer and context allocation stress tests"));
602 MemoryStressCase::Spec spec;
604 spec.types = (ObjectType)(OBJECTTYPE_PBUFFER|OBJECTTYPE_CONTEXT);
605 spec.minWidth = 64;
606 spec.minHeight = 64;
607 spec.maxWidth = 1024;
608 spec.maxHeight = 1024;
609 spec.use = true;
611 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_context_use", "PBuffer and context allocation stress tests"));