EgtInterface 1.6j1 :

- aggiunte funzioni per foto e textures.
This commit is contained in:
Dario Sassi
2015-10-11 18:02:31 +00:00
parent 3730add9d3
commit 5025c28adf
6 changed files with 112 additions and 2 deletions
+2 -2
View File
@@ -424,10 +424,10 @@ __stdcall EgtUnProjectPoint( int nWinX, int nWinY, double ptP[3])
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtLoadTexture( const wchar_t* wsName, const wchar_t* wsFile,
double dMMxPix, double dDimX, double dDimY, BOOL bRepeat)
double dMMxPix, double dDimX, double dDimY, int nRepeat)
{
return ( ExeLoadTexture( wstrztoA( wsName), wstrztoA( wsFile),
dMMxPix, dDimX, dDimY, ( bRepeat != FALSE)) ? TRUE : FALSE) ;
dMMxPix, dDimX, dDimY, nRepeat) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------