Roll Skia to 45a00cee88c0ea8ea175694cb94b26748713fe36 and update licenses. (flutter/engine#3569)

This commit is contained in:
Chinmay Garde 2017-04-06 11:49:36 -07:00 committed by GitHub
parent b3ce239c83
commit e09b1a579c
3 changed files with 3 additions and 4 deletions

2
DEPS
View File

@ -22,7 +22,7 @@ vars = {
'fuchsia_git': 'https://fuchsia.googlesource.com',
'skia_git': 'https://skia.googlesource.com',
'github_git': 'https://github.com',
'skia_revision': '291932e8e42e0556bfef9118231b4ac364ecf5df',
'skia_revision': '45a00cee88c0ea8ea175694cb94b26748713fe36',
# Note: When updating the Dart revision, ensure that all entries that are
# dependencies of dart are also updated

View File

@ -49,7 +49,7 @@ ftl::RefPtr<Vertices> Vertices::Create() {
return ftl::MakeRefCounted<Vertices>();
}
void Vertices::init(SkCanvas::VertexMode vertex_mode,
void Vertices::init(SkVertices::VertexMode vertex_mode,
const tonic::Float32List& positions,
const tonic::Float32List& texture_coordinates,
const tonic::Int32List& colors,

View File

@ -8,7 +8,6 @@
#include "lib/tonic/dart_wrappable.h"
#include "lib/tonic/typed_data/float32_list.h"
#include "lib/tonic/typed_data/int32_list.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "third_party/skia/include/core/SkVertices.h"
namespace tonic {
@ -30,7 +29,7 @@ class Vertices : public ftl::RefCountedThreadSafe<Vertices>,
static ftl::RefPtr<Vertices> Create();
void init(
SkCanvas::VertexMode vertex_mode,
SkVertices::VertexMode vertex_mode,
const tonic::Float32List& positions,
const tonic::Float32List& texture_coordinates,
const tonic::Int32List& colors,