Home | History | Annotate | Download | only in egl

Lines Matching defs:Spec

308 	struct Spec
318 MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description);
324 Spec m_spec;
335 MemoryStressCase::MemoryStressCase (EglTestContext& eglTestCtx, Spec spec, const char* name, const char* description)
337 , m_spec (spec)
459 MemoryStressCase::Spec spec;
461 spec.types = OBJECTTYPE_PBUFFER;
462 spec.minWidth = 256;
463 spec.minHeight = 256;
464 spec.maxWidth = 256;
465 spec.maxHeight = 256;
466 spec.use = false;
468 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_256x256", "PBuffer allocation stress tests"));
473 MemoryStressCase::Spec spec;
475 spec.types = OBJECTTYPE_PBUFFER;
476 spec.minWidth = 256;
477 spec.minHeight = 256;
478 spec.maxWidth = 256;
479 spec.maxHeight = 256;
480 spec.use = true;
482 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_256x256_use", "PBuffer allocation stress tests"));
487 MemoryStressCase::Spec spec;
489 spec.types = OBJECTTYPE_PBUFFER;
490 spec.minWidth = 1024;
491 spec.minHeight = 1024;
492 spec.maxWidth = 1024;
493 spec.maxHeight = 1024;
494 spec.use = false;
496 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_1024x1024", "PBuffer allocation stress tests"));
501 MemoryStressCase::Spec spec;
503 spec.types = OBJECTTYPE_PBUFFER;
504 spec.minWidth = 1024;
505 spec.minHeight = 1024;
506 spec.maxWidth = 1024;
507 spec.maxHeight = 1024;
508 spec.use = true;
510 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_1024x1024_use", "PBuffer allocation stress tests"));
515 MemoryStressCase::Spec spec;
517 spec.types = OBJECTTYPE_PBUFFER;
518 spec.minWidth = 64;
519 spec.minHeight = 64;
520 spec.maxWidth = 1024;
521 spec.maxHeight = 1024;
522 spec.use = false;
524 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer", "PBuffer allocation stress tests"));
529 MemoryStressCase::Spec spec;
531 spec.types = OBJECTTYPE_PBUFFER;
532 spec.minWidth = 64;
533 spec.minHeight = 64;
534 spec.maxWidth = 1024;
535 spec.maxHeight = 1024;
536 spec.use = true;
538 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_use", "PBuffer allocation stress tests"));
543 MemoryStressCase::Spec spec;
545 spec.types = OBJECTTYPE_CONTEXT;
546 spec.minWidth = 1024;
547 spec.minHeight = 1024;
548 spec.maxWidth = 1024;
549 spec.maxHeight = 1024;
550 spec.use = false;
552 addChild(new MemoryStressCase(m_eglTestCtx, spec, "context", "Context allocation stress tests"));
557 MemoryStressCase::Spec spec;
559 spec.types = OBJECTTYPE_CONTEXT;
560 spec.minWidth = 1024;
561 spec.minHeight = 1024;
562 spec.maxWidth = 1024;
563 spec.maxHeight = 1024;
564 spec.use = true;
566 addChild(new MemoryStressCase(m_eglTestCtx, spec, "context_use", "Context allocation stress tests"));
571 MemoryStressCase::Spec spec;
573 spec.types = (ObjectType)(OBJECTTYPE_PBUFFER|OBJECTTYPE_CONTEXT);
574 spec.minWidth = 64;
575 spec.minHeight = 64;
576 spec.maxWidth = 1024;
577 spec.maxHeight = 1024;
578 spec.use = false;
580 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_context", "PBuffer and context allocation stress tests"));
585 MemoryStressCase::Spec spec;
587 spec.types = (ObjectType)(OBJECTTYPE_PBUFFER|OBJECTTYPE_CONTEXT);
588 spec.minWidth = 64;
589 spec.minHeight = 64;
590 spec.maxWidth = 1024;
591 spec.maxHeight = 1024;
592 spec.use = true;
594 addChild(new MemoryStressCase(m_eglTestCtx, spec, "pbuffer_context_use", "PBuffer and context allocation stress tests"));