00f78de600
GM was updated in: https://skia-review.googlesource.com/c/skia/+/300172 (Make GM::onGpuSetup take a GrDirectContext) This CL updates: skpbench, nanobench, and some testing infrastructure. Only minor changes were made to the unit tests as they will be updated en masse in a follow up cl. Change-Id: Ieffc98865d4c9fc73e292d3c807ed4ae2081745a Reviewed-on: https://skia-review.googlesource.com/c/skia/+/300220 Reviewed-by: Adlai Holler <adlai@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
90 lines
3.7 KiB
C++
90 lines
3.7 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.
|
|
*/
|
|
|
|
#include "include/core/SkColor.h"
|
|
#include "include/gpu/GrBackendSurface.h"
|
|
#include "include/gpu/GrDirectContext.h"
|
|
#include "src/gpu/GrContextPriv.h"
|
|
#include "src/gpu/GrDrawingManager.h"
|
|
#include "src/gpu/GrGpu.h"
|
|
#include "src/gpu/GrImageInfo.h"
|
|
#include "src/gpu/GrProgramInfo.h"
|
|
#include "src/gpu/GrProxyProvider.h"
|
|
#include "src/gpu/GrSurfaceContext.h"
|
|
#include "src/gpu/SkGr.h"
|
|
#include "src/gpu/ops/GrSimpleMeshDrawOpHelper.h"
|
|
#include "tools/gpu/ProxyUtils.h"
|
|
|
|
namespace sk_gpu_test {
|
|
|
|
sk_sp<GrTextureProxy> MakeTextureProxyFromData(GrDirectContext* direct,
|
|
GrRenderable renderable,
|
|
GrSurfaceOrigin origin,
|
|
const GrImageInfo& imageInfo,
|
|
const void* data,
|
|
size_t rowBytes) {
|
|
if (direct->abandoned()) {
|
|
return nullptr;
|
|
}
|
|
|
|
const GrCaps* caps = direct->priv().caps();
|
|
|
|
const GrBackendFormat format = caps->getDefaultBackendFormat(imageInfo.colorType(), renderable);
|
|
if (!format.isValid()) {
|
|
return nullptr;
|
|
}
|
|
GrSwizzle swizzle = caps->getReadSwizzle(format, imageInfo.colorType());
|
|
|
|
sk_sp<GrTextureProxy> proxy;
|
|
proxy = direct->priv().proxyProvider()->createProxy(format, imageInfo.dimensions(), renderable,
|
|
1, GrMipMapped::kNo, SkBackingFit::kExact,
|
|
SkBudgeted::kYes, GrProtected::kNo);
|
|
if (!proxy) {
|
|
return nullptr;
|
|
}
|
|
GrSurfaceProxyView view(proxy, origin, swizzle);
|
|
auto sContext = GrSurfaceContext::Make(direct, std::move(view), imageInfo.colorType(),
|
|
imageInfo.alphaType(), imageInfo.refColorSpace());
|
|
if (!sContext) {
|
|
return nullptr;
|
|
}
|
|
if (!sContext->writePixels(imageInfo, data, rowBytes, {0, 0}, direct)) {
|
|
return nullptr;
|
|
}
|
|
return proxy;
|
|
}
|
|
|
|
GrProgramInfo* CreateProgramInfo(const GrCaps* caps,
|
|
SkArenaAlloc* arena,
|
|
const GrSurfaceProxyView* writeView,
|
|
GrAppliedClip&& appliedClip,
|
|
const GrXferProcessor::DstProxyView& dstProxyView,
|
|
GrGeometryProcessor* geomProc,
|
|
SkBlendMode blendMode,
|
|
GrPrimitiveType primitiveType,
|
|
GrPipeline::InputFlags flags,
|
|
const GrUserStencilSettings* stencilSettings) {
|
|
|
|
GrProcessorSet processors = GrProcessorSet(blendMode);
|
|
|
|
SkPMColor4f analysisColor = { 0, 0, 0, 1 }; // opaque black
|
|
|
|
SkDEBUGCODE(auto analysis =) processors.finalize(analysisColor,
|
|
GrProcessorAnalysisCoverage::kSingleChannel,
|
|
&appliedClip, stencilSettings, false,
|
|
*caps, GrClampType::kAuto, &analysisColor);
|
|
SkASSERT(!analysis.requiresDstTexture());
|
|
|
|
return GrSimpleMeshDrawOpHelper::CreateProgramInfo(caps, arena, writeView,
|
|
std::move(appliedClip), dstProxyView,
|
|
geomProc, std::move(processors),
|
|
primitiveType, flags, stencilSettings);
|
|
}
|
|
|
|
|
|
} // namespace sk_gpu_test
|