b2c4ea6219
What is left of the SkView system is used only by samples or viewer. As a result, move it out of the Skia source tree and re-organize so it is a bit easier to understand and use more shared code. Move samplecode/ClockFaceView.cpp to samplecode/SampleTextEffects.cpp, sice that's what's actually in it. Move SkAnimTimer.h to tools/timer, since it's actually shared between gm and samples. Change-Id: I55dafd94c64e4f930ddbd19168e0f812af86c455 Reviewed-on: https://skia-review.googlesource.com/146161 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
60 lines
1.5 KiB
C++
60 lines
1.5 KiB
C++
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#include "Sample.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkGraphics.h"
|
|
#include "SkRandom.h"
|
|
#include "SkGradientShader.h"
|
|
#include "SkPicture.h"
|
|
|
|
static sk_sp<SkShader> make_linear() {
|
|
SkPoint pts[] = { 0, 0, SK_Scalar1/500, SK_Scalar1/500 };
|
|
SkColor colors[] = { SK_ColorRED, SK_ColorBLUE };
|
|
return SkGradientShader::MakeLinear(pts, colors, nullptr, 2, SkShader::kClamp_TileMode);
|
|
}
|
|
|
|
class ClampView : public Sample {
|
|
sk_sp<SkShader> fGrad;
|
|
|
|
public:
|
|
ClampView() {
|
|
fGrad = make_linear();
|
|
}
|
|
|
|
protected:
|
|
virtual bool onQuery(Sample::Event* evt) {
|
|
if (Sample::TitleQ(*evt)) {
|
|
Sample::TitleR(evt, "Clamp");
|
|
return true;
|
|
}
|
|
return this->INHERITED::onQuery(evt);
|
|
}
|
|
|
|
virtual void onDrawContent(SkCanvas* canvas) {
|
|
SkPaint paint;
|
|
paint.setShader(fGrad);
|
|
|
|
// canvas->translate(this->width()/2, this->height()/2);
|
|
canvas->translate(64, 64);
|
|
canvas->drawPaint(paint);
|
|
|
|
SkPicture pic;
|
|
SkCanvas* c = pic.beginRecording(100, 100, 0);
|
|
SkCanvas::LayerIter layerIterator(c, false);
|
|
layerIterator.next();
|
|
layerIterator.done();
|
|
}
|
|
|
|
private:
|
|
typedef Sample INHERITED;
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
static Sample* MyFactory() { return new ClampView; }
|
|
static SampleRegister reg(MyFactory);
|