core/surface: drop map/unmap events in member funcs

causes loops
This commit is contained in:
Vaxry 2024-07-28 23:41:15 +02:00
parent fcff2dcac2
commit 73d09953e8
2 changed files with 2 additions and 4 deletions

View File

@ -319,8 +319,6 @@ void CWLSurfaceResource::map() {
mapped = true;
events.map.emit();
timespec now;
clock_gettime(CLOCK_MONOTONIC, &now);
frame(&now);
@ -335,8 +333,6 @@ void CWLSurfaceResource::unmap() {
mapped = false;
events.unmap.emit();
// release the buffers.
// this is necessary for XWayland to function correctly,
// as it does not unmap via the traditional commit(null buffer) method, but via the X11 protocol.

View File

@ -82,11 +82,13 @@ CWLSubsurfaceResource::CWLSubsurfaceResource(SP<CWlSubsurface> resource_, SP<CWL
listeners.commitSurface = surface->events.commit.registerListener([this](std::any d) {
if (surface->current.buffer && !surface->mapped) {
surface->map();
surface->events.map.emit();
return;
}
if (!surface->current.buffer && surface->mapped) {
surface->unmap();
surface->events.unmap.emit();
return;
}
});