2018-03-07 18:01:25 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ProxyUtils.h"
|
2018-03-07 20:20:21 +00:00
|
|
|
#include "GrBackendSurface.h"
|
2018-03-07 18:01:25 +00:00
|
|
|
#include "GrContextPriv.h"
|
|
|
|
#include "GrDrawingManager.h"
|
2018-03-07 20:20:21 +00:00
|
|
|
#include "GrGpu.h"
|
2018-03-07 18:01:25 +00:00
|
|
|
#include "GrProxyProvider.h"
|
|
|
|
|
|
|
|
namespace sk_gpu_test {
|
|
|
|
|
|
|
|
sk_sp<GrTextureProxy> MakeTextureProxyFromData(GrContext* context, bool isRT, int width, int height,
|
2018-09-25 13:31:10 +00:00
|
|
|
GrColorType colorType, GrSRGBEncoded srgbEncoded,
|
2018-03-07 18:01:25 +00:00
|
|
|
GrSurfaceOrigin origin, const void* data,
|
|
|
|
size_t rowBytes) {
|
2018-06-26 21:38:34 +00:00
|
|
|
if (context->abandoned()) {
|
2018-06-25 12:53:09 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-03-07 20:20:21 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy;
|
|
|
|
if (kBottomLeft_GrSurfaceOrigin == origin) {
|
|
|
|
// We (soon will) only support using kBottomLeft with wrapped textures.
|
|
|
|
auto backendTex = context->contextPriv().getGpu()->createTestingOnlyBackendTexture(
|
2018-09-25 13:31:10 +00:00
|
|
|
nullptr, width, height, colorType, isRT, GrMipMapped::kNo);
|
2018-03-07 20:20:21 +00:00
|
|
|
if (!backendTex.isValid()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
// Adopt ownership so our caller doesn't have to worry about deleting the backend texture.
|
|
|
|
if (isRT) {
|
|
|
|
proxy = context->contextPriv().proxyProvider()->wrapRenderableBackendTexture(
|
|
|
|
backendTex, origin, 1, kAdopt_GrWrapOwnership);
|
|
|
|
} else {
|
|
|
|
proxy = context->contextPriv().proxyProvider()->wrapBackendTexture(
|
2018-12-06 15:00:03 +00:00
|
|
|
backendTex, origin, kAdopt_GrWrapOwnership, kRW_GrIOType);
|
2018-03-07 20:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!proxy) {
|
2018-03-09 14:33:19 +00:00
|
|
|
context->contextPriv().getGpu()->deleteTestingOnlyBackendTexture(backendTex);
|
2018-03-07 20:20:21 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2018-09-25 13:31:10 +00:00
|
|
|
GrPixelConfig config = GrColorTypeToPixelConfig(colorType, srgbEncoded);
|
|
|
|
if (!context->contextPriv().caps()->isConfigTexturable(config)) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-11-16 20:43:41 +00:00
|
|
|
const GrBackendFormat format =
|
|
|
|
context->contextPriv().caps()->getBackendFormatFromGrColorType(colorType,
|
|
|
|
srgbEncoded);
|
|
|
|
if (!format.isValid()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-03-07 20:20:21 +00:00
|
|
|
GrSurfaceDesc desc;
|
|
|
|
desc.fConfig = config;
|
|
|
|
desc.fWidth = width;
|
|
|
|
desc.fHeight = height;
|
|
|
|
desc.fFlags = isRT ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
|
|
|
|
proxy = context->contextPriv().proxyProvider()->createProxy(
|
2018-11-16 20:43:41 +00:00
|
|
|
format, desc, origin, SkBackingFit::kExact, SkBudgeted::kYes);
|
2018-03-07 20:20:21 +00:00
|
|
|
if (!proxy) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-03-07 18:01:25 +00:00
|
|
|
}
|
|
|
|
auto sContext = context->contextPriv().makeWrappedSurfaceContext(proxy, nullptr);
|
|
|
|
if (!sContext) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2018-09-25 13:31:10 +00:00
|
|
|
if (!context->contextPriv().writeSurfacePixels(sContext.get(), 0, 0, width, height, colorType,
|
|
|
|
nullptr, data, rowBytes)) {
|
2018-03-07 18:01:25 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return proxy;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace sk_gpu_test
|