blob: 4c12bc44fc2822b86b00ae03152f05a5f831a063 [file] [log] [blame] [edit]
// 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.
#include <emscripten/console.h>
#include "flutter/impeller/display_list/dl_runtime_effect_impeller.h"
#include "flutter/impeller/runtime_stage/runtime_stage.h"
#include "third_party/skia/include/core/SkString.h"
namespace Skwasm {
sk_sp<flutter::DlRuntimeEffect> CreateRuntimeEffect(SkString* source) {
// TODO(jacksongardner): Implement runtime effect for wimp
// https://github.com/flutter/flutter/issues/175431
return flutter::DlRuntimeEffectImpeller::Make(nullptr);
}
} // namespace Skwasm