blob: 20c3c5dae54b064dc494d27f344458d7d71d87b8 [file] [log] [blame]
/*
* Copyright 2019 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef SkVMBlitter_DEFINED
#define SkVMBlitter_DEFINED
#include "include/core/SkBlendMode.h"
#include "src/core/SkVM.h"
namespace skvm {
bool BlendModeSupported(SkBlendMode);
Color BlendModeProgram(Builder*, SkBlendMode, Color src, Color dst);
}
#endif