/* * Copyright 2023 Google LLC * * 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 "src/shaders/SkShaderBase.h" #include "include/core/SkFlattenable.h" class SkReadBuffer; class SkWriteBuffer; struct SkStageRec; /** * \class SkEmptyShader * A Shader that always draws nothing. Its createContext always returns nullptr. */ class SkEmptyShader : public SkShaderBase { … }; #endif // SkEmptyShader_DEFINED