Lines Matching refs:em
126 static void CopyTextureFromFB ( EffectManager* em );
127 static void SetTextures ( EffectManager* em );
526 static void CopyTextureFromFB( EffectManager* em ) in CopyTextureFromFB() argument
530 if ( em->baseViewWd == em->copyTexWd && in CopyTextureFromFB()
531 em->baseViewHt == em->copyTexHt ) in CopyTextureFromFB()
537 ASSERT( (em->baseViewWd == em->copyTexWd * 2) && in CopyTextureFromFB()
538 (em->baseViewHt == em->copyTexHt * 2) ); in CopyTextureFromFB()
544 GXSetTexCopySrc(0, 0, em->baseViewWd, em->baseViewHt); in CopyTextureFromFB()
545 GXSetTexCopyDst(em->copyTexWd, em->copyTexHt, GX_TF_RGB5A3, filterMode); in CopyTextureFromFB()
558 static void SetTextures( EffectManager* em ) in SetTextures() argument
564 GXInitTexObj(&txb, TexBuffer, em->copyTexWd, em->copyTexHt, in SetTextures()