suppress pictures for vertices for now

git-svn-id: http://skia.googlecode.com/svn/trunk@12835 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
mike@reedtribe.org 2013-12-30 04:20:38 +00:00
parent 0c87ea8082
commit 2c326b7359

View File

@ -8,6 +8,7 @@
#include "gm.h"
#include "SkCanvas.h"
#include "SkGradientShader.h"
#include "SkRandom.h"
static SkShader* make_shader(int w, int h) {
const SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE };
@ -103,6 +104,10 @@ protected:
}
}
virtual uint32_t onGetFlags() const {
return 0;//kSkipPipe_Flag | kSkipPicture_Flag;
}
private:
typedef skiagm::GM INHERITED;
};