[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-10-30 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=399499

Nate Graham  changed:

   What|Removed |Added

 CC||walker.lfrei...@yahoo.com.b
   ||r

--- Comment #62 from Nate Graham  ---
*** Bug 428473 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-09-30 Thread Elvis
https://bugs.kde.org/show_bug.cgi?id=399499

Elvis  changed:

   What|Removed |Added

 CC||elvistonyre...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-09-30 Thread Elvis
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #61 from Elvis  ---
Created attachment 132020
  --> https://bugs.kde.org/attachment.cgi?id=132020=edit
New crash information added by DrKonqi

kwin_x11 (5.19.4) using Qt 5.14.2

- What I was doing when the application crashed:The laptop  had suspended and
upon relogin, the Kwin crashed, Chrome and other software had render issues
too.

-- Backtrace (Reduced):
#4  0x7f472f45244f in _mm_stream_si128(long long __vector(2)*, long long
__vector(2)) (__B=..., __A=0x7f4700ac65f0) at
/usr/lib/gcc/x86_64-linux-gnu/7/include/emmintrin.h:1474
#5  KWin::WindowQuadList::makeInterleavedArrays
(this=this@entry=0x7f4714032760, type=type@entry=7,
vertices=vertices@entry=0x7f4700ac65f0, textureMatrix=...) at
./libkwineffects/kwineffects.cpp:1158
#6  0x7f471027b5b0 in KWin::OpenGLWindow::performPaint
(this=0x5618a779cd50, mask=, region=..., _data=...) at
./plugins/scenes/opengl/scene_opengl.cpp:1471
#7  0x7f471027160a in KWin::SceneOpenGL2::performPaintWindow
(this=, w=0x5618a75f0350, mask=, region=...,
data=...) at ./plugins/scenes/opengl/scene_opengl.cpp:1063
#8  0x7f4732c27f21 in KWin::EffectsHandlerImpl::drawWindow
(this=0x5618a75d0950, w=, mask=, region=...,
data=...) at ./effects.cpp:480

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-05-29 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||marius.alks...@gmail.com

--- Comment #60 from Vlad Zahorodnii  ---
*** Bug 422028 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-05-18 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-05-18 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||ciop1...@gmail.com

--- Comment #59 from Vlad Zahorodnii  ---
*** Bug 421666 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-01-13 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||myshanskii.al...@gmail.com

--- Comment #58 from Vlad Zahorodnii  ---
*** Bug 416203 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-01-10 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

   Version Fixed In||5.18.0

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-01-10 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #57 from David Edmundson  ---
Note, I could not reproduce this crash and this fix is based on a strong
theory. 

If we get a duplicate with Plasma 5.18beta or newer, please reopen.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-01-10 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://commits.kde.org/kwi
   ||n/212d87a32ef15b9baf6102060
   ||639c06fa580e965

--- Comment #56 from David Edmundson  ---
Git commit 212d87a32ef15b9baf6102060639c06fa580e965 by David Edmundson.
Committed on 10/01/2020 at 14:24.
Pushed by davidedmundson into branch 'master'.

[scenes/opengl] Remove outdated hack to reset vertex buffers

Summary:
Scene opengl has a callback for when we have a GL error. One of the
handlers for an error calls scheduleVboReInit the history shows it was a
forerunner to the GLX_NV_robustness_video_memory_purge but resetting
only one tiny part based on debug output.

When we get here we schedule a reset of the vertex buffer, via a timer.
When the timer is caled we have no idea what GL context was last
current, if it's not the currect context then the main scene
GLVertexBuffer will be deleted but not correctly re-initialised.

We have two very common crashes with a corrupted
GLVertexBuffer::streamingBuffer() which would match up perfectly.

Given that we now have a proper mechanism to reset the entire scene, we
don't need this timer based hack and resolve that problem.
Related: bug 372305

Reviewers: #kwin

Subscribers: kwin

Tags: #kwin

Differential Revision: https://phabricator.kde.org/D26556

M  +0-31   plugins/scenes/opengl/scene_opengl.cpp

https://commits.kde.org/kwin/212d87a32ef15b9baf6102060639c06fa580e965

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2020-01-07 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #55 from Vlad Zahorodnii  ---
So, I've been running nvidia for quite a while and haven't managed to reproduce
the crash yet. Each time a graphics reset occurs, KWin recovers from it
successfully. :(

I'm not sure whether I should be happy or sad about it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-12-15 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #54 from Vlad Zahorodnii  ---
Alright, the streaming vertex buffer should be okay after a graphics reset
since the GlxBackend destroys it, which leaves with another option - perhaps
kwin attempts to render something before it has a chance to process the
Scene::resetCompositing signal. I have ordered an NVIDIA video card, so
hopefully I'll be able to investigate this problem more thoroughly soon.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-11-24 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||lfercor...@gmail.com

--- Comment #53 from Vlad Zahorodnii  ---
*** Bug 414434 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-11-24 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||guyu2...@gmail.com

--- Comment #52 from Vlad Zahorodnii  ---
*** Bug 414457 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-11-24 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||budheswarbag...@gmail.com

--- Comment #51 from Vlad Zahorodnii  ---
*** Bug 414480 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-11-18 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #50 from Vlad Zahorodnii  ---
*** Bug 413917 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-11-18 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||bo...@fiery.me

--- Comment #49 from Vlad Zahorodnii  ---
*** Bug 413997 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-11-10 Thread diminombre
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #48 from diminom...@gmail.com  ---
After last Update KDE Neon 5.17.2
the folders and files names on desktop now looks fine (not strange colors and
pixels)
the kwin keep crashing and restarting after reactive from suspend, but the
names now are better.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-31 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||marcor...@gmail.com

--- Comment #47 from Vlad Zahorodnii  ---
*** Bug 413546 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-25 Thread Mateus N. Coelho
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #46 from Mateus N. Coelho  ---
(In reply to David Edmundson from comment #37)
> Can someone who can reproduce this run
> 
> 
> QT_LOGGING_RULES="kwin_scene_opengl.debug=true;libkwinglutils.debug=true'"
> kwin_x11 --replace
> 
> from a terminal trigger a crash and then paste the whole output here please.

qt.core.logging: Ignoring malformed logging rule: 'libkwinglutils.debug=true''
Module 'org.kde.kwin.decoration' does not contain a module identifier directive
- it cannot be protected from external registrations.
kwin_scene_opengl: Initializing OpenGL compositing
OpenGL vendor string:   NVIDIA Corporation
OpenGL renderer string: GeForce MX130/PCIe/SSE2
OpenGL version string:  4.6.0 NVIDIA 430.26
OpenGL shading language version string: 4.60 NVIDIA
Driver: NVIDIA
Driver version: 430.26
GPU class:  Unknown
OpenGL version: 4.6
GLSL version:   4.60
X server version:   1.20.4
Linux kernel version:   5.0
Requires strict binding:no
GLSL shaders:   yes
Texture NPOT support:   yes
Virtual Machine:no
kwin_scene_opengl: 0x0: OpenGL debug output initialized
kwin_scene_opengl: Initializing fences for synchronization with the X command
stream
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 1 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_DYNAMIC_DRAW) will use SYSTEM HEAP memory
as the source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 1 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_DYNAMIC_DRAW) has been mapped WRITE_ONLY
in SYSTEM HEAP memory (fast).
kwin_scene_opengl: OpenGL 2 compositing successfully initialized
kf5.kcoreaddons.desktopparser: Property type "Url" is not a known QVariant
type. Found while parsing property definition for "X-KWin-Video-Url" in
"/usr/share/kservicetypes5/kwineffect.desktop"
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 2 (bound to
GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO
memory as the source for buffer object operations.
kwin_scene_opengl: 0x20084: Texture state usage warning: The texture object (0)
bound to texture image unit 0 does not have a defined base level and cannot be
used for texture mapping.
kwin_scene_opengl: 0x20092: Program/shader state performance warning: Vertex
shader in program 1 is being recompiled based on GL state.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 3 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO memory as the
source for buffer object operations.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-24 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #45 from genuste...@gmail.com ---
Maybe I haven't got some debug packages? I have had libkwinglutils11-dbgsym and
some more qt5 dbgsym packages, but should I have something special?

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-24 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

 Resolution|INTENTIONAL |---
 Ever confirmed|1   |0
 Status|NEEDSINFO   |REPORTED

--- Comment #44 from David Edmundson  ---
That's perfect, thanks.

What's important above is the line we don't see in this output:

qCWarning(LIBKWINGLUTILS) << "GL error: context lost";

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-24 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #43 from genuste...@gmail.com ---
(In reply to David Edmundson from comment #42)
> That was running up to the point of the crash?

Sorry, seems like I am stupid enough. Looks like this time I caught the crash,
didn't I?

QT_LOGGING_RULES="kwin_scene_opengl.debug=true;libkwinglutils.debug=true"
kwin_x11 --replace 
kwin_xkbcommon: XKB: couldn't find a Compose file for locale "en_GB.UTF-8,"

Module 'org.kde.kwin.decoration' does not contain a module identifier directive
- it cannot be protected from external registrations.
kwin_scene_opengl: Initializing OpenGL compositing
OpenGL vendor string:   NVIDIA Corporation
OpenGL renderer string: GeForce 940MX/PCIe/SSE2
OpenGL version string:  4.6.0 NVIDIA 430.50
OpenGL shading language version string: 4.60 NVIDIA
Driver: NVIDIA
Driver version: 430.50
GPU class:  Unknown
OpenGL version: 4.6
GLSL version:   4.60
X server version:   1.20.4
Linux kernel version:   5.2
Requires strict binding:no
GLSL shaders:   yes
Texture NPOT support:   yes
Virtual Machine:no
kwin_scene_opengl: 0x0: OpenGL debug output initialized
kwin_scene_opengl: Initializing fences for synchronization with the X command
stream
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 1 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_DYNAMIC_DRAW) will use SYSTEM HEAP memory
as the source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 1 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_DYNAMIC_DRAW) has been mapped WRITE_ONLY
in SYSTEM HEAP memory (fast).
kwin_scene_opengl: OpenGL 2 compositing successfully initialized
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 2 (bound to
GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO
memory as the source for buffer object operations.
kwin_scene_opengl: 0x20084: Texture state usage warning: The texture object (0)
bound to texture image unit 0 does not have a defined base level and cannot be
used for texture mapping.
kwin_scene_opengl: 0x20092: Program/shader state performance warning: Vertex
shader in program 1 is being recompiled based on GL state.
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1350,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1351,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1352,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1354,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1356,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1357,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1360,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1361,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1362,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1364,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1366,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1367,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1438, resource
id: 71303196, major code: 3 (GetWindowAttributes), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1439,
resource id: 71303196, major code: 14 (GetGeometry), minor code: 0
kwin_scene_opengl: 0x20084: Texture state usage warning: The texture object (0)
bound to texture image unit 0 does not have a defined base level and cannot be
used for texture mapping.
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1570,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1571,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1572,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 1 (bound 

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-24 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #42 from David Edmundson  ---
That was running up to the point of the crash?

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-24 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #41 from genuste...@gmail.com ---
(In reply to David Edmundson from comment #40)
> There's no need to run things as root.
> 
> >qt.core.logging: Ignoring malformed logging rule: 
> >'libkwinglutils.debug=true'"'
> 
> Heh, my fault
And I, in turn, didn't check what was being run as su :)) 

>QT_LOGGING_RULES="kwin_scene_opengl.debug=true;libkwinglutils.debug=true" 
>kwin_x11 --replace

QT_LOGGING_RULES="kwin_scene_opengl.debug=true;libkwinglutils.debug=true"
kwin_x11 --replace
kwin_xkbcommon: XKB: couldn't find a Compose file for locale "en_GB.UTF-8,"

Module 'org.kde.kwin.decoration' does not contain a module identifier directive
- it cannot be protected from external registrations.
kwin_scene_opengl: Initializing OpenGL compositing
OpenGL vendor string:   NVIDIA Corporation
OpenGL renderer string: GeForce 940MX/PCIe/SSE2
OpenGL version string:  4.6.0 NVIDIA 430.50
OpenGL shading language version string: 4.60 NVIDIA
Driver: NVIDIA
Driver version: 430.50
GPU class:  Unknown
OpenGL version: 4.6
GLSL version:   4.60
X server version:   1.20.4
Linux kernel version:   5.2
Requires strict binding:no
GLSL shaders:   yes
Texture NPOT support:   yes
Virtual Machine:no
kwin_scene_opengl: 0x0: OpenGL debug output initialized
kwin_scene_opengl: Initializing fences for synchronization with the X command
stream
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 1 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_DYNAMIC_DRAW) will use SYSTEM HEAP memory
as the source for buffer object operations.
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 1 (bound to
GL_ARRAY_BUFFER_ARB, usage hint is GL_DYNAMIC_DRAW) has been mapped WRITE_ONLY
in SYSTEM HEAP memory (fast).
kwin_scene_opengl: OpenGL 2 compositing successfully initialized
kwin_scene_opengl: 0x20071: Buffer detailed info: Buffer object 2 (bound to
GL_ELEMENT_ARRAY_BUFFER_ARB, usage hint is GL_STATIC_DRAW) will use VIDEO
memory as the source for buffer object operations.
kwin_scene_opengl: 0x20084: Texture state usage warning: The texture object (0)
bound to texture image unit 0 does not have a defined base level and cannot be
used for texture mapping.
kwin_scene_opengl: 0x20092: Program/shader state performance warning: Vertex
shader in program 1 is being recompiled based on GL state.
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1350,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1351,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1352,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1354,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1356,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1357,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1360,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1361,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1362,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1364,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1366,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1367,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 1438, resource
id: 85983260, major code: 3 (GetWindowAttributes), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1439,
resource id: 85983260, major code: 14 (GetGeometry), minor code: 0
kwin_scene_opengl: 0x20084: Texture state usage warning: The texture object (0)
bound to texture image unit 0 does not have a defined base level and cannot be
used for texture mapping.
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1563,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1564,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-24 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #40 from David Edmundson  ---
There's no need to run things as root.

>qt.core.logging: Ignoring malformed logging rule: 'libkwinglutils.debug=true'"'

Heh, my fault

QT_LOGGING_RULES="kwin_scene_opengl.debug=true;libkwinglutils.debug=true"
kwin_x11 --replace

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-24 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399499

genuste...@gmail.com changed:

   What|Removed |Added

 Resolution|--- |INTENTIONAL
 Status|CONFIRMED   |NEEDSINFO

--- Comment #39 from genuste...@gmail.com ---
(In reply to David Edmundson from comment #37)
> Can someone who can reproduce this run
> from a terminal trigger a crash and then paste the whole output here please.

sudo QT_LOGGING_RULES="kwin_scene_opengl.debug=true;libkwinglutils.debug=true'"
kwin_x11 --replace
[sudo] password for : 
qt.core.logging: Ignoring malformed logging rule: 'libkwinglutils.debug=true'"'
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'
kwin_xkbcommon: XKB: couldn't find a Compose file for locale "en_GB.UTF-8,"

QPainter::begin: Paint device returned engine == 0, type: 3
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setWindow: Painter not active
QPainter::setClipRect: Painter not active
QPainter::save: Painter not active
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
QPainter::setClipRect: Painter not active
QPainter::drawRects: Painter not active
QPainter::restore: Unbalanced save/restore
QPainter::save: Painter not active
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setBrush: Painter not active
QPainter::setPen: Painter not active
QPainter::drawRects: Painter not active
QPainter::restore: Unbalanced save/restore
QPainter::begin: Paint device returned engine == 0, type: 3
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setWindow: Painter not active
QPainter::setClipRect: Painter not active
QPainter::save: Painter not active
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
QPainter::setClipRect: Painter not active
QPainter::drawRects: Painter not active
QPainter::restore: Unbalanced save/restore
QPainter::save: Painter not active
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setBrush: Painter not active
QPainter::setPen: Painter not active
QPainter::drawRects: Painter not active
QPainter::restore: Unbalanced save/restore
QPainter::begin: Paint device returned engine == 0, type: 3
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setWindow: Painter not active
QPainter::setClipRect: Painter not active
QPainter::save: Painter not active
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setPen: Painter not active
QPainter::setBrush: Painter not active
QPainter::setClipRect: Painter not active
QPainter::drawRects: Painter not active
QPainter::restore: Unbalanced save/restore
QPainter::save: Painter not active
QPainter::setRenderHint: Painter must be active to set rendering hints
QPainter::setBrush: Painter not active
QPainter::setPen: Painter not active
QPainter::drawRects: Painter not active
QPainter::restore: Unbalanced save/restore
OpenGL vendor string:   NVIDIA Corporation
OpenGL renderer string: GeForce 940MX/PCIe/SSE2
OpenGL version string:  4.6.0 NVIDIA 430.50
OpenGL shading language version string: 4.60 NVIDIA
Driver: NVIDIA
Driver version: 430.50
GPU class:  Unknown
OpenGL version: 4.6
GLSL version:   4.60
X server version:   1.20.4
Linux kernel version:   5.2
Requires strict binding:no
GLSL shaders:   yes
Texture NPOT support:   yes
Virtual Machine:no
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1590,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1591,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1592,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1594,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1596,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1597,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 1600,
resource id: 0, major code: 14 (GetGeometry), minor code: 0
qt.qpa.xcb: 

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-24 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||genuste...@gmail.com

--- Comment #38 from Vlad Zahorodnii  ---
*** Bug 413381 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-19 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #37 from David Edmundson  ---
Can someone who can reproduce this run


QT_LOGGING_RULES="kwin_scene_opengl.debug=true;libkwinglutils.debug=true'"
kwin_x11 --replace

from a terminal trigger a crash and then paste the whole output here please.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-19 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #36 from David Edmundson  ---
*** Bug 413153 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-19 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

 CC||mateus.naza...@yahoo.com.br

--- Comment #35 from David Edmundson  ---
*** Bug 413214 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-12 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

 CC||darkcac...@gmail.com

--- Comment #34 from David Edmundson  ---
*** Bug 412773 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-10-02 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||softexp...@gmail.com

--- Comment #33 from Vlad Zahorodnii  ---
*** Bug 412528 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-09-10 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||brelandj...@gmail.com

--- Comment #32 from Vlad Zahorodnii  ---
*** Bug 411781 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-09-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #31 from David Edmundson  ---
Shot in the dark, but is anyone who can readibly reproduce this bug going to
Akademy?

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-29 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

 CC||zahed.ri...@gmail.com

--- Comment #30 from David Edmundson  ---
*** Bug 411420 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-28 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 Status|REOPENED|CONFIRMED

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-28 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 Resolution|UNMAINTAINED|---
 Status|RESOLVED|REOPENED

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-28 Thread Gabe
https://bugs.kde.org/show_bug.cgi?id=399499

Gabe  changed:

   What|Removed |Added

 Resolution|--- |UNMAINTAINED
 Status|CONFIRMED   |RESOLVED

--- Comment #29 from Gabe  ---
I’ve moved on from Plasma since I started using a notebook. I’m going to close
this issue for now.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-28 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #28 from David Edmundson  ---
Edit: I was talking nonsense.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-28 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #27 from David Edmundson  ---
I did some more graphics reset patches in Qt and I think our handling is wrong.

The reset flag is set on until you call makeCurrent a second time, then it's
cleared.

We have a tonne of places, especially screen change handling code, that calls
makeCurrent without a graphics reset check. My theory is that if we get in
here, we could have a reset that we don't handle.

I'll flood my kwin with qDebug and see if I can trigger that happening.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-28 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

 CC||sikven...@gmail.com

--- Comment #26 from David Edmundson  ---
*** Bug 411385 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-26 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #25 from Vlad Zahorodnii  ---
@Frederik My guess is that we don't reset GLVertexBuffer::streamingBuffer() on
a graphics reset.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-14 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zahorodnii  changed:

   What|Removed |Added

 CC||diminom...@gmail.com

--- Comment #24 from Vlad Zahorodnii  ---
*** Bug 410884 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-13 Thread Bogdan Ilchyshyn
https://bugs.kde.org/show_bug.cgi?id=399499

Bogdan Ilchyshyn  changed:

   What|Removed |Added

 CC||bogdan.ilchys...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-13 Thread Frederik Gladhorn
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #23 from Frederik Gladhorn  ---
I guess my previous comment can be discarded, looking at the backtraces, the
pointers seem to be aligned, this is puzzling. I cannot reproduce it.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-08-12 Thread Frederik Gladhorn
https://bugs.kde.org/show_bug.cgi?id=399499

Frederik Gladhorn  changed:

   What|Removed |Added

 CC||gladh...@kde.org

--- Comment #22 from Frederik Gladhorn  ---
I would guess this is an alignment issue, see the Intel Intrinsics Guide:
https://software.intel.com/sites/landingpage/IntrinsicsGuide/#text=load_si128=5191,3063,5661,3343
Load 128-bits of integer data from memory into dst using a non-temporal memory
hint. mem_addr must be aligned on a 16-byte boundary or a general-protection
exception may be generated.

In other words: we should check the alignment of dstP as far as I can tell.

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-07-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=399499

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-07-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=399499

Nate Graham  changed:

   What|Removed |Added

 CC||cesar@gmail.com

--- Comment #20 from Nate Graham  ---
*** Bug 409864 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-07-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=399499

Nate Graham  changed:

   What|Removed |Added

 CC||g...@japanmissions.com

--- Comment #21 from Nate Graham  ---
*** Bug 410171 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-06-05 Thread Michał Dybczak
https://bugs.kde.org/show_bug.cgi?id=399499

Michał Dybczak  changed:

   What|Removed |Added

 CC|michal.dybc...@gmail.com|

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-06-05 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #19 from techxga...@outlook.com ---
Created attachment 120605
  --> https://bugs.kde.org/attachment.cgi?id=120605=edit
Crash report on Kubuntu 19.04 after waking up from sleep

This is also happening after waking up from sleep on my Kubuntu 19.04 PC

Operating System: Kubuntu 19.04
KDE Plasma Version: 5.15.5
KDE Frameworks Version: 5.57.0
Qt Version: 5.12.2
Kernel Version: 5.0.0-16-generic
OS Type: 64-bit
Processors: 4 × Intel® Core™ i5-6500 CPU @ 3.20GHz
Memory: 15.6 GiB of RAM
GPU: GeForce GTX 1060 6GB (NVIDIA 430 driver)

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-03-27 Thread Vadym Krevs
https://bugs.kde.org/show_bug.cgi?id=399499

Vadym Krevs  changed:

   What|Removed |Added

 CC||vkr...@yahoo.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-03-13 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

 CC||emanuel.ang...@gmail.com

--- Comment #18 from Vlad Zagorodniy  ---
*** Bug 405427 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-03-06 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

 CC||michal.dybc...@gmail.com

--- Comment #17 from Vlad Zagorodniy  ---
*** Bug 404738 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-02-21 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

 CC||fero...@gmail.com

--- Comment #16 from Vlad Zagorodniy  ---
*** Bug 404645 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-02-05 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

 CC||joshfow...@protonmail.com

--- Comment #15 from Vlad Zagorodniy  ---
*** Bug 403952 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-01-28 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

 CC||techxga...@outlook.com

--- Comment #14 from David Edmundson  ---
*** Bug 403673 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2019-01-11 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

 CC||kont...@fabian-scheid.de

--- Comment #13 from Vlad Zagorodniy  ---
*** Bug 403095 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-12-30 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

 CC||darkwingbuc...@gmail.com

--- Comment #12 from David Edmundson  ---
*** Bug 402567 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-12-28 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

  Flags||NVIDIA+

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-12-28 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

 CC||tudu...@gmail.com

--- Comment #11 from Vlad Zagorodniy  ---
*** Bug 402643 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-12-16 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

 CC||rut...@yandex.ru

--- Comment #10 from Vlad Zagorodniy  ---
*** Bug 402180 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-12-07 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #9 from asca...@q.com ---
Created attachment 116743
  --> https://bugs.kde.org/attachment.cgi?id=116743=edit
New crash information added by DrKonqi

kwin_x11 (5.14.4) using Qt 5.11.2

- What I was doing when the application crashed:

Just resumed from sleep.  Oddly, it only happens when I am using any window
decoration theme OTHER than Breeze.  When I use Breeze, this crash doesn't
happen, and the icon captions do not get corrupted as they do with the others.

-- Backtrace (Reduced):
#6  0x7f33ceb24d7f in _mm_stream_si128(long long __vector(2)*, long long
__vector(2)) (__B=..., __A=0x7f33a4adda50) at
/usr/lib/gcc/x86_64-linux-gnu/7/include/emmintrin.h:1473
#7  KWin::WindowQuadList::makeInterleavedArrays
(this=this@entry=0x7ffdab2c7c10, type=type@entry=7,
vertices=vertices@entry=0x7f33a4adda50, textureMatrix=...) at
./libkwineffects/kwineffects.cpp:1313
#8  0x7f33a5fa7a5b in KWin::SceneOpenGL2Window::performPaint
(this=this@entry=0x563f2f01d990, mask=mask@entry=2, region=..., data=...) at
./plugins/scenes/opengl/scene_opengl.cpp:1487
#9  0x7f33a5fb0f13 in KWin::SceneOpenGL2::performPaintWindow
(this=, w=, mask=, region=...,
data=...) at ./plugins/scenes/opengl/scene_opengl.cpp:1108
#10 0x7f33a5fb1047 in KWin::SceneOpenGL2::finalDrawWindow
(this=this@entry=0x563f2f041a50, w=w@entry=0x563f2eb1a3c0, mask=mask@entry=2,
region=..., data=...) at ./plugins/scenes/opengl/scene_opengl.cpp:1090

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-11-21 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #8 from asca...@q.com ---
Created attachment 116449
  --> https://bugs.kde.org/attachment.cgi?id=116449=edit
New crash information added by DrKonqi

kwin_x11 (5.14.3) using Qt 5.11.2

- What I was doing when the application crashed:

Resuming from standby.  As soon as I finished entering the unlock password, the
ladybug icon indicating the kwin crash was already there in the systray.

-- Backtrace (Reduced):
#6  0x7f5286d83d7f in _mm_stream_si128(long long __vector(2)*, long long
__vector(2)) (__B=..., __A=0x7f51b2e46460) at
/usr/lib/gcc/x86_64-linux-gnu/7/include/emmintrin.h:1473
#7  KWin::WindowQuadList::makeInterleavedArrays
(this=this@entry=0x7ffc7277e3a8, type=type@entry=7,
vertices=vertices@entry=0x7f51b2e46460, textureMatrix=...) at
./libkwineffects/kwineffects.cpp:1313
#8  0x7f51cb0daa5b in KWin::SceneOpenGL2Window::performPaint
(this=this@entry=0x55588e5842b0, mask=mask@entry=2, region=..., data=...) at
./plugins/scenes/opengl/scene_opengl.cpp:1487
#9  0x7f51cb0e3f13 in KWin::SceneOpenGL2::performPaintWindow
(this=, w=, mask=, region=...,
data=...) at ./plugins/scenes/opengl/scene_opengl.cpp:1108
#10 0x7f51cb0e4047 in KWin::SceneOpenGL2::finalDrawWindow
(this=this@entry=0x555890876be0, w=w@entry=0x55588dfda1c0, mask=mask@entry=2,
region=..., data=...) at ./plugins/scenes/opengl/scene_opengl.cpp:1090

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-11-21 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

 CC||hm.x...@gmail.com

--- Comment #7 from Vlad Zagorodniy  ---
*** Bug 401256 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-11-08 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399499

mich.delbia...@gmail.com changed:

   What|Removed |Added

 CC||mich.delbia...@gmail.com

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-11-08 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=399499

--- Comment #6 from mich.delbia...@gmail.com ---
Created attachment 116184
  --> https://bugs.kde.org/attachment.cgi?id=116184=edit
New crash information added by DrKonqi

kwin_x11 (5.12.6) using Qt 5.9.5

- What I was doing when the application crashed:
resuming from suspension to ram (stand-by)
- Unusual behavior I noticed:
alpha layer becomes noisy (windows using opengl or desktop icons with
didascaly), i think this is caused by nvidia driver miscommunication
- Custom settings of the application:
nvidia driver 390.77

-- Backtrace (Reduced):
#6  0x7f0e604fd2af in KWin::WindowQuadList::makeInterleavedArrays(unsigned
int, KWin::GLVertex2D*, QMatrix4x4 const&) const () from
/usr/lib/x86_64-linux-gnu/libkwineffects.so.11
[...]
#10 0x7f0e634f2956 in
KWin::EffectsHandlerImpl::drawWindow(KWin::EffectWindow*, int, QRegion,
KWin::WindowPaintData&) () from /usr/lib/x86_64-linux-gnu/libkwin.so.5
#11 0x7f0e604f9620 in KWin::Effect::drawWindow(KWin::EffectWindow*, int,
QRegion, KWin::WindowPaintData&) () from
/usr/lib/x86_64-linux-gnu/libkwineffects.so.11
#12 0x7f0e634f28ee in
KWin::EffectsHandlerImpl::drawWindow(KWin::EffectWindow*, int, QRegion,
KWin::WindowPaintData&) () from /usr/lib/x86_64-linux-gnu/libkwin.so.5
[...]
#14 0x7f0e634f28ee in
KWin::EffectsHandlerImpl::drawWindow(KWin::EffectWindow*, int, QRegion,
KWin::WindowPaintData&) () from /usr/lib/x86_64-linux-gnu/libkwin.so.5

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-11-07 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=399499

Vlad Zagorodniy  changed:

   What|Removed |Added

 CC||pablo.nik...@gmail.com

--- Comment #5 from Vlad Zagorodniy  ---
*** Bug 400790 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 399499] Crash in makeInterleavedArrays

2018-10-28 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=399499

David Edmundson  changed:

   What|Removed |Added

 CC||k...@davidedmundson.co.uk
 Status|REPORTED|CONFIRMED
Summary|KWin Seg Fault on Startup   |Crash in
   ||makeInterleavedArrays
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are watching all bug changes.