EgtGraphics 1.6v7 :
- migliorie varie per overload e const - aggiunta GetPlaneSnapPoint.
This commit is contained in:
+4
-4
@@ -249,7 +249,7 @@ TextureMgr::UnloadTexture( const string& sName)
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
TextureMgr::Exists( const string& sName)
|
||||
TextureMgr::Exists( const string& sName) const
|
||||
{
|
||||
// ricerca della texture di nome dato
|
||||
auto iIter = m_umTextData.find( sName) ;
|
||||
@@ -258,7 +258,7 @@ TextureMgr::Exists( const string& sName)
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
TextureMgr::GetPixels( const string& sName, int& nWidth, int& nHeight)
|
||||
TextureMgr::GetPixels( const string& sName, int& nWidth, int& nHeight) const
|
||||
{
|
||||
// ricerca della texture di nome dato
|
||||
auto iIter = m_umTextData.find( sName) ;
|
||||
@@ -272,7 +272,7 @@ TextureMgr::GetPixels( const string& sName, int& nWidth, int& nHeight)
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
TextureMgr::GetDimensions( const string& sName, double& dDimX, double& dDimY)
|
||||
TextureMgr::GetDimensions( const string& sName, double& dDimX, double& dDimY) const
|
||||
{
|
||||
// ricerca della texture di nome dato
|
||||
auto iIter = m_umTextData.find( sName) ;
|
||||
@@ -300,7 +300,7 @@ TextureMgr::ChangeDimensions( const string& sName, double dDimX, double dDimY)
|
||||
|
||||
//----------------------------------------------------------------------------
|
||||
bool
|
||||
TextureMgr::GetTextureData( const string& sName, unsigned int& nId, double& dDimX, double& dDimY)
|
||||
TextureMgr::GetTextureData( const string& sName, unsigned int& nId, double& dDimX, double& dDimY) const
|
||||
{
|
||||
// ricerca della texture di nome dato
|
||||
auto iIter = m_umTextData.find( sName) ;
|
||||
|
||||
Reference in New Issue
Block a user