Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
KWin
Commits
1dd12a06
Commit
1dd12a06
authored
May 10, 2022
by
Méven Car
Browse files
Fix a couple unused warnings
GIT_SILENT NO_CHANGELOG
parent
e1cec89d
Pipeline
#174227
passed with stage
in 12 minutes and 15 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/backends/x11/standalone/x11_platform.cpp
View file @
1dd12a06
...
...
@@ -370,6 +370,8 @@ void X11StandalonePlatform::startInteractivePositionSelection(std::function<void
void
X11StandalonePlatform
::
setupActionForGlobalAccel
(
QAction
*
action
)
{
connect
(
KGlobalAccel
::
self
(),
&
KGlobalAccel
::
globalShortcutActiveChanged
,
kwinApp
(),
[
action
](
QAction
*
triggeredAction
,
bool
active
)
{
Q_UNUSED
(
active
)
if
(
triggeredAction
!=
action
)
return
;
...
...
src/effects/blur/blur.cpp
View file @
1dd12a06
...
...
@@ -782,6 +782,8 @@ void BlurEffect::doBlur(const QRegion &shape, const QRect &screen, const float o
void
BlurEffect
::
upscaleRenderToScreen
(
GLVertexBuffer
*
vbo
,
int
vboStart
,
int
blurRectCount
,
const
QMatrix4x4
&
screenProjection
,
QPoint
windowPosition
)
{
Q_UNUSED
(
windowPosition
)
m_renderTextures
[
1
]
->
bind
();
m_shader
->
bind
(
BlurShader
::
UpSampleType
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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