mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
They are no longer wrappers in C++, but are converted directly to their Skia types. R=eseidel@chromium.org Review URL: https://codereview.chromium.org/1162393002
30 lines
818 B
C++
30 lines
818 B
C++
// Copyright 2015 The Chromium 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 SKY_ENGINE_CORE_PAINTING_RECT_H_
|
|
#define SKY_ENGINE_CORE_PAINTING_RECT_H_
|
|
|
|
#include "dart/runtime/include/dart_api.h"
|
|
#include "sky/engine/tonic/dart_converter.h"
|
|
#include "third_party/skia/include/core/SkRect.h"
|
|
|
|
namespace blink {
|
|
// Very simple wrapper for SkRect to add a null state.
|
|
class Rect {
|
|
public:
|
|
SkRect sk_rect;
|
|
bool is_null;
|
|
};
|
|
|
|
template <>
|
|
struct DartConverter<Rect> {
|
|
static Rect FromArgumentsWithNullCheck(Dart_NativeArguments args,
|
|
int index,
|
|
Dart_Handle& exception);
|
|
};
|
|
|
|
} // namespace blink
|
|
|
|
#endif // SKY_ENGINE_CORE_PAINTING_RECT_H_
|