blob: 43462de491454f4eeb671fc2aaa24ff343e193eb [file] [log] [blame]
/*
* Copyright 2006 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkDrawShader_DEFINED
#define SkDrawShader_DEFINED
#include "SkPaintPart.h"
#include "SkShader.h"
class SkBaseBitmap;
class SkDrawBitmapShader : public SkDrawShader {
DECLARE_DRAW_MEMBER_INFO(BitmapShader);
SkDrawBitmapShader();
virtual bool add() SK_OVERRIDE;
virtual SkShader* getShader() SK_OVERRIDE;
protected:
SkBool filterBitmap;
SkBaseBitmap* image;
private:
typedef SkDrawShader INHERITED;
};
#endif // SkDrawShader_DEFINED