X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Fview.h;h=c6c230dfe05f23c44c1ecdbd085faa459a3efafd;hp=b099c18390b593c14d366ce9555135b2bb51cecf;hb=aaa65d90ac812f924cbbc39bef7a5f8b6cad2da3;hpb=6ad7439e8ebf969fcd2d3a710a4b16e2b1ee131f diff --git a/src/view.h b/src/view.h index b099c18..c6c230d 100644 --- a/src/view.h +++ b/src/view.h @@ -10,7 +10,10 @@ namespace IPDF { public: View(Document & document, const Rect & bounds = Rect(0,0,1,1), const Colour & colour = Colour(0.f,0.f,0.f,1.f)) - : m_document(document), m_bounds(bounds), m_colour(colour), m_use_gpu_transform(false) {} + : m_document(document), m_bounds(bounds), m_colour(colour), m_use_gpu_transform(false) + { + Debug("View Created - Bounds => {%s}", m_bounds.Str().c_str()); + } virtual ~View() {} void Render();