e877dce203
Change-Id: Iad1c72eb81ffd9c006e39c96191fada990d9dbd6 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/226224 Commit-Queue: Greg Daniel <egdaniel@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com> Reviewed-by: Robert Phillips <robertphillips@google.com>
38 lines
1.4 KiB
C++
38 lines
1.4 KiB
C++
/*
|
|
* Copyright 2018 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef ProxyUtils_DEFINED
|
|
#define ProxyUtils_DEFINED
|
|
|
|
#include "include/private/GrTypesPriv.h"
|
|
#include "src/gpu/GrTextureProxy.h"
|
|
|
|
namespace sk_gpu_test {
|
|
|
|
/** Makes a texture proxy containing the passed in color data. */
|
|
sk_sp<GrTextureProxy> MakeTextureProxyFromData(GrContext*, GrRenderable, int width, int height,
|
|
GrColorType, SkAlphaType, GrSurfaceOrigin,
|
|
const void* data, size_t rowBytes);
|
|
|
|
/** Version that takes SkColorType rather than GrColorType. */
|
|
inline sk_sp<GrTextureProxy> MakeTextureProxyFromData(GrContext* context, GrRenderable renderable,
|
|
int width, int height, SkColorType ct,
|
|
SkAlphaType alphaType, GrSurfaceOrigin origin,
|
|
const void* data, size_t rowBytes) {
|
|
GrColorType grCT = SkColorTypeToGrColorType(ct);
|
|
if (GrColorType::kUnknown == grCT) {
|
|
return nullptr;
|
|
}
|
|
|
|
return MakeTextureProxyFromData(context, renderable, width, height, grCT, alphaType, origin,
|
|
data, rowBytes);
|
|
}
|
|
|
|
} // namespace sk_gpu_test
|
|
|
|
#endif
|