e901b6de3e
BUG=skia: R=scroggo@google.com, dominikg@chromium.org Author: reed@google.com Review URL: https://codereview.chromium.org/264843006 git-svn-id: http://skia.googlecode.com/svn/trunk@14514 2bbb7eff-a529-9590-31e7-b0007b416f81
50 lines
1.2 KiB
C++
50 lines
1.2 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.
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkEmptyShader_DEFINED
|
|
#define SkEmptyShader_DEFINED
|
|
|
|
#include "SkShader.h"
|
|
|
|
/**
|
|
* \class SkEmptyShader
|
|
* A Shader that always draws nothing. Its createContext always returns NULL.
|
|
*/
|
|
class SK_API SkEmptyShader : public SkShader {
|
|
public:
|
|
SkEmptyShader() {}
|
|
|
|
virtual size_t contextSize() const SK_OVERRIDE {
|
|
// Even though createContext returns NULL we have to return a value of at least
|
|
// sizeof(SkShader::Context) to satisfy SkSmallAllocator.
|
|
return sizeof(SkShader::Context);
|
|
}
|
|
|
|
virtual bool validContext(const ContextRec&, SkMatrix* totalInverse = NULL) const SK_OVERRIDE {
|
|
return false;
|
|
}
|
|
|
|
virtual SkShader::Context* createContext(const ContextRec&, void*) const SK_OVERRIDE {
|
|
// validContext returns false.
|
|
return NULL;
|
|
}
|
|
|
|
SK_TO_STRING_OVERRIDE()
|
|
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkEmptyShader)
|
|
|
|
protected:
|
|
SkEmptyShader(SkReadBuffer& buffer) : INHERITED(buffer) {}
|
|
|
|
private:
|
|
typedef SkShader INHERITED;
|
|
};
|
|
|
|
#endif
|