Lines Matching refs:em
129 static void CopyTextureFromFB ( EffectManager* em );
130 static void SetTextures ( EffectManager* em );
529 static void CopyTextureFromFB( EffectManager* em ) in CopyTextureFromFB() argument
533 if ( em->baseViewWd == em->copyTexWd && in CopyTextureFromFB()
534 em->baseViewHt == em->copyTexHt ) in CopyTextureFromFB()
540 ASSERT( (em->baseViewWd == em->copyTexWd * 2) && in CopyTextureFromFB()
541 (em->baseViewHt == em->copyTexHt * 2) ); in CopyTextureFromFB()
547 GXSetTexCopySrc(0, 0, em->baseViewWd, em->baseViewHt); in CopyTextureFromFB()
548 GXSetTexCopyDst(em->copyTexWd, em->copyTexHt, GX_TF_RGB5A3, filterMode); in CopyTextureFromFB()
561 static void SetTextures( EffectManager* em ) in SetTextures() argument
567 GXInitTexObj(&txb, TexBuffer, em->copyTexWd, em->copyTexHt, in SetTextures()