Home | History | Annotate | Download | only in glshared

Lines Matching full:rnd

451 	void				allocateTexture		(de::Random& rnd);
452 void allocateBuffer (de::Random& rnd);
496 de::Random rnd(m_seed);
510 allocateTexture(rnd);
514 allocateBuffer(rnd);
519 if (rnd.getBool())
520 allocateBuffer(rnd);
522 allocateTexture(rnd);
580 void MemObjectAllocator::allocateTexture (de::Random& rnd)
585 int width = rnd.getInt(m_config.minTextureSize, m_config.maxTextureSize);
586 int height = rnd.getInt(m_config.minTextureSize, m_config.maxTextureSize);
671 void MemObjectAllocator::allocateBuffer (de::Random& rnd)
676 int size = rnd.getInt(m_config.minBufferSize, m_config.maxBufferSize);