Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Unmaintained
KDE Workspace
Commits
248ab65f
Commit
248ab65f
authored
Jan 11, 2011
by
Fredrik Höglund
Committed by
Martin Flöser
Jan 30, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweak the debug output to make it more readable.
svn path=/branches/KDE/4.6/kdebase/workspace/; revision=1213845
parent
4ac466b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
8 deletions
+2
-8
kwin/lib/kwinglplatform.cpp
kwin/lib/kwinglplatform.cpp
+2
-8
No files found.
kwin/lib/kwinglplatform.cpp
View file @
248ab65f
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment