From 8242fbab6e55ee79b1578460fcb942c5deb7da16 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 21 Dec 2011 13:15:04 +1000 Subject: [PATCH] Mac GL transitions fix #3 (alpha debug info) --- Graphs/gGraphView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 63fa2c6b..6aac10b5 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -2457,6 +2457,10 @@ void gGraphView::fadeIn(bool dir) } m_inAnimation=false; current_day_snapshot=renderPixmap(width(),height(),false); + qDebug() << current_day_snapshot.depth() << "bit image depth"; + if (current_day_snapshot.hasAlpha()){ + qDebug() << "Snapshots are not storing alpha channel needed for texture blending"; + } m_inAnimation=true; m_animationStarted.start();