diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-08-30 14:47:10 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-09-04 16:54:01 +0200 |
commit | 8acb8f5414b8ee257da670caad84239337ab8299 (patch) | |
tree | d59eb35067a940e7bb3cae0cc3f9a43ea2e51b3f /src | |
parent | da9e102e33c9ac24adde5ef32038f7136230ef88 (diff) |
app: do not use the Qt surface ID shift hack
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/app.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app.cpp b/src/app.cpp index 4800d8c..c672052 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -418,7 +418,7 @@ void App::execute_pending() { // | .__/|_| \___/_/\_\_|\___|\__,_| |_____| \_/ \___|_| |_|\__|___/ // |_| void App::surface_created(uint32_t surface_id) { - surface_id >>= id_allocator::id_shift; + //surface_id >>= id_allocator::id_shift; logdebug("surface_id is %u", surface_id); @@ -428,7 +428,7 @@ void App::surface_created(uint32_t surface_id) { } void App::surface_removed(uint32_t surface_id) { - surface_id >>= id_allocator::id_shift; + //surface_id >>= id_allocator::id_shift; logdebug("surface_id is %u", surface_id); |