diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2020-08-27 00:34:59 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-30 09:43:49 +0200 |
commit | d8e22fedc341a48effaf53de1f3e9f79ae573104 (patch) | |
tree | dfd019e48bf364181b3f6b11250c1df38283e2f0 /Libraries/LibWeb | |
parent | 081bb2962675cdf8994633906c73328a605baa02 (diff) | |
download | serenity-d8e22fedc341a48effaf53de1f3e9f79ae573104.zip |
Libraries: Unbreak building with extra debug macros
Diffstat (limited to 'Libraries/LibWeb')
-rw-r--r-- | Libraries/LibWeb/OutOfProcessWebView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/OutOfProcessWebView.cpp b/Libraries/LibWeb/OutOfProcessWebView.cpp index 203dd1605a..fdd4ac38f1 100644 --- a/Libraries/LibWeb/OutOfProcessWebView.cpp +++ b/Libraries/LibWeb/OutOfProcessWebView.cpp @@ -109,7 +109,7 @@ void OutOfProcessWebView::notify_server_did_paint(Badge<WebContentClient>, i32 s void OutOfProcessWebView::notify_server_did_invalidate_content_rect(Badge<WebContentClient>, [[maybe_unused]] const Gfx::IntRect& content_rect) { #ifdef DEBUG_SPAM - dbg() << "server did invalidate content_rect: " << content_rect << ", current shbuf_id=" << m_bitmap->shbuf_id(); + dbg() << "server did invalidate content_rect: " << content_rect << ", current front_shbuf_id=" << m_front_bitmap->shbuf_id() << ", current back_shbuf_id=" << m_back_bitmap->shbuf_id(); #endif request_repaint(); } |