Tweak the debug output to make it more readable.
svn path=/branches/KDE/4.6/kdebase/workspace/; revision=1213845
This commit is contained in:
parent
7d5d8213dd
commit
ee406e6d86
1 changed files with 2 additions and 8 deletions
|
@ -755,14 +755,8 @@ void GLPlatform::printResults() const
|
|||
|
||||
print("Direct rendering:", m_directRendering ? "yes" : "no");
|
||||
print("Requires strict binding:", !m_looseBinding ? "yes" : "no");
|
||||
print("GLSL shaders:", m_supportsGLSL ? "yes" : "no");
|
||||
|
||||
if (m_supportsGLSL)
|
||||
print("Limited GLSL support:", m_limitedGLSL ? "yes" : "no");
|
||||
|
||||
print("Texture NPOT support:", m_textureNPOT ? "yes" : "no");
|
||||
if (m_textureNPOT)
|
||||
print("Limited NPOT support:", m_limitedNPOT ? "yes" : "no");
|
||||
print("GLSL shaders:", m_supportsGLSL ? (m_limitedGLSL ? "limited" : "yes") : "no");
|
||||
print("Texture NPOT support:", m_textureNPOT ? (m_limitedNPOT ? "limited" : "yes") : "no");
|
||||
}
|
||||
|
||||
bool GLPlatform::supports(GLFeature feature) const
|
||||
|
|
Loading…
Reference in a new issue