chromium/third_party/skia/src/base/SkRectMemcpy.h

/*
 * Copyright 2023 Google LLC
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef SkRectMemcpy_DEFINED
#define SkRectMemcpy_DEFINED

#include "include/private/base/SkAssert.h"
#include "include/private/base/SkTemplates.h"

#include <cstring>

static inline void SkRectMemcpy(void* dst, size_t dstRB, const void* src, size_t srcRB,
                                size_t trimRowBytes, int rowCount) {}

#endif