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
59b21a01
Commit
59b21a01
authored
Jan 21, 2022
by
Vlad Zahorodnii
Browse files
Fix -Wreorder-ctor
parent
45c560ea
Pipeline
#126563
passed with stage
in 18 minutes and 4 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
src/backends/x11/standalone/eglbackend.h
View file @
59b21a01
...
...
@@ -68,8 +68,8 @@ protected:
void
onDamage
()
override
;
private:
EglBackend
*
m_backend
;
EglPixmapTexture
*
q
;
EglBackend
*
m_backend
;
EGLImageKHR
m_image
=
EGL_NO_IMAGE_KHR
;
};
...
...
src/libkwineffects/kwinglutils.cpp
View file @
59b21a01
...
...
@@ -983,14 +983,14 @@ GLRenderTarget* GLRenderTarget::popRenderTarget()
}
GLRenderTarget
::
GLRenderTarget
()
:
m
Valid
(
false
)
,
m
Texture
(
GL_TEXTURE_2D
)
:
m
Texture
(
GL_TEXTURE_2D
)
,
m
Valid
(
false
)
{
}
GLRenderTarget
::
GLRenderTarget
(
const
GLTexture
&
color
)
:
m
Valid
(
false
)
,
m
Texture
(
color
)
:
m
Texture
(
color
)
,
m
Valid
(
false
)
{
// Make sure FBO is supported
if
(
sSupported
&&
!
mTexture
.
isNull
())
{
...
...
Vlad Zahorodnii
@vladz
mentioned in commit
3f58feae
·
Jan 21, 2022
mentioned in commit
3f58feae
mentioned in commit 3f58feaecec85722972488eee8e28dba19770734
Toggle commit list
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