EgtInterface :

- aggiunta EgtLoadTexture.
This commit is contained in:
Dario Sassi
2015-09-28 16:14:50 +00:00
parent 46cd8eeea5
commit 1429e40ff4
+7
View File
@@ -421,3 +421,10 @@ __stdcall EgtUnProjectPoint( int nWinX, int nWinY, double ptP[3])
return TRUE ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtLoadTexture( const wchar_t* wsName, const wchar_t* wsFile,
double dDimX, double dDimY, BOOL bRepeat)
{
return ( ExeLoadTexture( wstrztoA( wsName), wstrztoA( wsFile), dDimX, dDimY, ( bRepeat != FALSE)) ? TRUE : FALSE) ;
}