3aac1f9f30
Review URL: https://codereview.chromium.org/18042005 git-svn-id: http://skia.googlecode.com/svn/trunk@9879 2bbb7eff-a529-9590-31e7-b0007b416f81
20 lines
475 B
C
20 lines
475 B
C
#ifndef __DEFINED__SkPdfConfig
|
|
#define __DEFINED__SkPdfConfig
|
|
|
|
//#define PDF_TRACE
|
|
//#define PDF_TRACE_DIFF_IN_PNG
|
|
//#define PDF_DEBUG_NO_CLIPING
|
|
//#define PDF_DEBUG_NO_PAGE_CLIPING
|
|
//#define PDF_DEBUG_3X
|
|
|
|
// TODO(edisonn): move in trace util.
|
|
#ifdef PDF_TRACE
|
|
void SkTraceMatrix(const SkMatrix& matrix, const char* sz);
|
|
void SkTraceRect(const SkRect& rect, const char* sz);
|
|
#else
|
|
#define SkTraceMatrix(a,b)
|
|
#define SkTraceRect(a,b)
|
|
#endif
|
|
|
|
#endif // __DEFINED__SkPdfConfig
|