blob: 509a06a94f7d77086267b37e1afd7103ed1594ba [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_LIB_UI_PAINTING_SHADER_H_
#define FLUTTER_LIB_UI_PAINTING_SHADER_H_
#include "flutter/flow/skia_gpu_object.h"
#include "flutter/lib/ui/dart_wrapper.h"
#include "flutter/lib/ui/ui_dart_state.h"
#include "third_party/skia/include/core/SkFilterQuality.h"
#include "third_party/skia/include/core/SkShader.h"
namespace flutter {
class Shader : public RefCountedDartWrappable<Shader> {
DEFINE_WRAPPERTYPEINFO();
FML_FRIEND_MAKE_REF_COUNTED(Shader);
public:
~Shader() override;
virtual sk_sp<SkShader> shader(SkFilterQuality) = 0;
protected:
Shader() {}
private:
// flutter::SkiaGPUObject<SkShader> shader_;
};
} // namespace flutter
#endif // FLUTTER_LIB_UI_PAINTING_SHADER_H_