EgtGraphics 1.6b3 :

- aggiunta gestione flag di edge per non disegnare in wireframe/hiddenline (per poligoni).
This commit is contained in:
Dario Sassi
2015-02-14 09:29:36 +00:00
parent 7ffdfed121
commit 045f3e480c
9 changed files with 57 additions and 19 deletions
+3 -1
View File
@@ -56,6 +56,8 @@ Scene::Scene( void)
m_colBackBottom.Set( 176, 176, 176) ;
// Modalità di visualizzazione
m_nShowMode = SM_WIREFRAME ;
m_bShowCurveDirection = false ;
m_bShowTriaAdvanced = true ;
// Selezione
m_bSelect = false ;
m_Unsel.reserve( 50) ;
@@ -267,7 +269,7 @@ Scene::GetOpenGLInfo( void)
const char* p ;
if ( ( p = reinterpret_cast<const char*> ( glGetString( GL_VERSION))) != nullptr)
sInfo += p ;
sInfo += ( m_bNewWay ? " (new way)" : " (old way)") ;
sInfo += ( m_bNewWay ? " (Nw)" : " (Ow)") ;
sInfo += " " ;
if ( ( p = reinterpret_cast<const char*> ( glGetString( GL_VENDOR))) != nullptr)
sInfo += p ;