Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Rishel <rishel.nick@gmail.com>2021-03-02 23:07:12 +0300
committerNicholas Rishel <rishel.nick@gmail.com>2021-03-02 23:38:38 +0300
commit577577bd6d3a6c49bfff0f4eae2df924e6b0ebbb (patch)
treecb8486c579dfbd92537789ec2215c071f730d7ab
parent6aec6568a0a3756f0b974ea3c8a00a1fb39a354b (diff)
Logging test.T85799
-rw-r--r--intern/ghost/intern/GHOST_WindowWin32.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/intern/ghost/intern/GHOST_WindowWin32.cpp b/intern/ghost/intern/GHOST_WindowWin32.cpp
index ad5643fcd89..0026b7fa88a 100644
--- a/intern/ghost/intern/GHOST_WindowWin32.cpp
+++ b/intern/ghost/intern/GHOST_WindowWin32.cpp
@@ -316,6 +316,7 @@ GHOST_WindowWin32::~GHOST_WindowWin32()
if (m_wintab.handle) {
if (m_wintab.close && m_wintab.tablet) {
m_wintab.close(m_wintab.tablet);
+ printf("Window %p Tablet %p Closed Wintab\n", getHWND(), m_wintab.tablet);
}
FreeLibrary(m_wintab.handle);
@@ -1016,6 +1017,7 @@ void GHOST_WindowWin32::processWin32TabletActivateEvent(WORD state)
return;
}
+ printf("Window %p Tablet %p Wintab activate event\n", getHWND(), m_wintab.tablet);
if (m_wintab.enable && m_wintab.tablet) {
m_wintab.enable(m_wintab.tablet, state);