2016-02-16 15:34:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2016 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkImageInfo.h"
|
|
|
|
#include "include/core/SkPoint.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkRefCnt.h"
|
2019-05-06 21:17:19 +00:00
|
|
|
#include "include/core/SkTypes.h"
|
2020-07-06 14:56:46 +00:00
|
|
|
#include "include/gpu/GrDirectContext.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/gpu/GrTypes.h"
|
2019-05-06 21:17:19 +00:00
|
|
|
#include "include/private/GrTypesPriv.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/private/SkTemplates.h"
|
|
|
|
#include "src/core/SkUtils.h"
|
2019-05-06 21:17:19 +00:00
|
|
|
#include "src/gpu/GrCaps.h"
|
2020-10-14 15:23:11 +00:00
|
|
|
#include "src/gpu/GrDirectContextPriv.h"
|
2019-09-30 16:15:30 +00:00
|
|
|
#include "src/gpu/GrImageInfo.h"
|
2019-06-18 13:58:02 +00:00
|
|
|
#include "src/gpu/GrSurfaceProxy.h"
|
|
|
|
#include "src/gpu/GrTextureProxy.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "src/gpu/SkGr.h"
|
2021-08-04 17:27:43 +00:00
|
|
|
#include "src/gpu/SurfaceFillContext.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tests/Test.h"
|
|
|
|
#include "tools/gpu/GrContextFactory.h"
|
|
|
|
#include "tools/gpu/ProxyUtils.h"
|
2018-04-17 18:14:51 +00:00
|
|
|
|
2019-05-06 21:17:19 +00:00
|
|
|
#include <initializer_list>
|
2018-04-17 18:14:51 +00:00
|
|
|
#include <utility>
|
2016-02-16 15:34:17 +00:00
|
|
|
|
2016-04-12 16:59:58 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(CopySurface, reporter, ctxInfo) {
|
2020-08-11 16:02:22 +00:00
|
|
|
auto dContext = ctxInfo.directContext();
|
2020-07-06 14:56:46 +00:00
|
|
|
|
2016-02-16 15:34:17 +00:00
|
|
|
static const int kW = 10;
|
|
|
|
static const int kH = 10;
|
|
|
|
static const size_t kRowBytes = sizeof(uint32_t) * kW;
|
|
|
|
|
|
|
|
SkAutoTMalloc<uint32_t> srcPixels(kW * kH);
|
|
|
|
for (int i = 0; i < kW * kH; ++i) {
|
|
|
|
srcPixels.get()[i] = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkAutoTMalloc<uint32_t> dstPixels(kW * kH);
|
|
|
|
for (int i = 0; i < kW * kH; ++i) {
|
|
|
|
dstPixels.get()[i] = ~i;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const SkIRect kSrcRects[] {
|
|
|
|
{ 0, 0, kW , kH },
|
|
|
|
{-1, -1, kW+1, kH+1},
|
|
|
|
{ 1, 1, kW-1, kH-1},
|
|
|
|
{ 5, 5, 6 , 6 },
|
|
|
|
};
|
|
|
|
|
|
|
|
static const SkIPoint kDstPoints[] {
|
|
|
|
{ 0 , 0 },
|
|
|
|
{ 1 , 1 },
|
|
|
|
{ kW/2, kH/4},
|
|
|
|
{ kW-1, kH-1},
|
|
|
|
{ kW , kH },
|
|
|
|
{ kW+1, kH+2},
|
|
|
|
{-1 , -1 },
|
|
|
|
};
|
|
|
|
|
2018-07-31 14:51:17 +00:00
|
|
|
static const SkImageInfo kImageInfos[] {
|
|
|
|
SkImageInfo::Make(kW, kH, kRGBA_8888_SkColorType, kPremul_SkAlphaType),
|
|
|
|
SkImageInfo::Make(kW, kH, kBGRA_8888_SkColorType, kPremul_SkAlphaType)
|
|
|
|
};
|
2017-01-25 17:10:37 +00:00
|
|
|
|
2016-02-16 15:34:17 +00:00
|
|
|
SkAutoTMalloc<uint32_t> read(kW * kH);
|
|
|
|
|
|
|
|
for (auto sOrigin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
|
|
|
|
for (auto dOrigin : {kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin}) {
|
2019-05-13 14:40:06 +00:00
|
|
|
for (auto sRenderable : {GrRenderable::kYes, GrRenderable::kNo}) {
|
|
|
|
for (auto dRenderable : {GrRenderable::kYes, GrRenderable::kNo}) {
|
2020-07-31 00:24:57 +00:00
|
|
|
for (const SkIRect& srcRect : kSrcRects) {
|
|
|
|
for (const SkIPoint& dstPoint : kDstPoints) {
|
|
|
|
for (const SkImageInfo& ii: kImageInfos) {
|
2021-03-30 20:14:37 +00:00
|
|
|
GrCPixmap srcPM(ii, srcPixels.get(), kRowBytes);
|
|
|
|
GrPixmap dstPM(ii, dstPixels.get(), kRowBytes);
|
2020-08-12 18:06:50 +00:00
|
|
|
auto srcView = sk_gpu_test::MakeTextureProxyViewFromData(
|
2020-12-24 01:36:44 +00:00
|
|
|
dContext, sRenderable, sOrigin, srcPM);
|
2020-08-12 18:06:50 +00:00
|
|
|
auto dstView = sk_gpu_test::MakeTextureProxyViewFromData(
|
2020-12-24 01:36:44 +00:00
|
|
|
dContext, dRenderable, dOrigin, dstPM);
|
2018-07-31 14:51:17 +00:00
|
|
|
|
|
|
|
// Should always work if the color type is RGBA, but may not work
|
|
|
|
// for BGRA
|
2018-08-07 17:22:03 +00:00
|
|
|
if (ii.colorType() == kRGBA_8888_SkColorType) {
|
2020-08-12 18:06:50 +00:00
|
|
|
if (!srcView || !dstView) {
|
2018-07-31 14:51:17 +00:00
|
|
|
ERRORF(reporter,
|
|
|
|
"Could not create surfaces for copy surface test.");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
2020-08-11 16:02:22 +00:00
|
|
|
if (!dContext->defaultBackendFormat(
|
2019-08-14 18:23:53 +00:00
|
|
|
kBGRA_8888_SkColorType, GrRenderable::kNo).isValid()) {
|
2018-07-31 14:51:17 +00:00
|
|
|
continue;
|
|
|
|
}
|
2020-08-12 18:06:50 +00:00
|
|
|
if (!srcView || !dstView) {
|
2018-07-31 14:51:17 +00:00
|
|
|
ERRORF(reporter,
|
|
|
|
"Could not create surfaces for copy surface test.");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2016-02-16 15:34:17 +00:00
|
|
|
|
2021-08-02 15:14:38 +00:00
|
|
|
auto dstContext = dContext->priv().makeSC(std::move(dstView),
|
|
|
|
ii.colorInfo());
|
2018-07-31 14:51:17 +00:00
|
|
|
|
Reland "Reland "Remove support for copyAsDraw in gpu copySurface.""
This reverts commit 4c6f9b767034c6812d868108516c2580dce3cb56.
Reason for revert: Landing with neuxs 7 and androind one fixes
Original change's description:
> Revert "Reland "Remove support for copyAsDraw in gpu copySurface.""
>
> This reverts commit 84ea04949cabc87a88d06c5c6f6aeb944a745911.
>
> Reason for revert: nexus 7 and android one broken
>
> Original change's description:
> > Reland "Remove support for copyAsDraw in gpu copySurface."
> >
> > This reverts commit c5167c053bd58e6afbad83fe493c0231df3f9704.
> >
> > Reason for revert: fixed
> >
> > Original change's description:
> > > Revert "Remove support for copyAsDraw in gpu copySurface."
> > >
> > > This reverts commit 6565506463db042d3d543a1707f473cdf1ef4e9e.
> > >
> > > Reason for revert: seems to break things?
> > >
> > > Original change's description:
> > > > Remove support for copyAsDraw in gpu copySurface.
> > > >
> > > > The major changes on a higher lever are:
> > > > 1) The majority of all copies now go through GrSurfaceProxy::Copy which
> > > > takes in a proxy and returns a new one with the data copied to it. This
> > > > is the most common use case within Ganesh.
> > > >
> > > > 2) The backend copy calls no longer do draws, require origins to be the
> > > > same, and won't do any swizzling or adjustment of subrects. They are
> > > > all implemented to be dumb copy this data to this other spot.
> > > >
> > > > 3) The GrSurfaceContext copy call has now been moved to priv and renamed
> > > > copyNoDraw, and a new priv copyAsDraw was added to GrRenderTargetContext.
> > > >
> > > > 4) WritePixels and ReplaceRenderTarget both need to specifiy the destination
> > > > of copies. They are the only users (besides the GrSurfaceProxy::Copy) which
> > > > call the priv methods on GrSurfaceContext.
> > > >
> > > > Change-Id: Iaf1eb3a73ccaf39a75af77e281dae594f809186f
> > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/217459
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: Id43aa8aa1451e794342e930441d9975b90e6b59f
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218549
> > > Reviewed-by: Greg Daniel <egdaniel@google.com>
> > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> >
> > Change-Id: I1a96f85ae2ff7622a6b57406755d478e7fbcf56e
> > No-Presubmit: true
> > No-Tree-Checks: true
> > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218797
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
>
> Change-Id: I310930a9df30535f45a065263a40239141e15562
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219384
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Greg Daniel <egdaniel@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
Change-Id: I88df4f19aa26ed77b5af4e25d138387cbabd1934
No-Presubmit: true
No-Tree-Checks: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219386
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
2019-06-07 15:43:30 +00:00
|
|
|
bool result = false;
|
|
|
|
if (sOrigin == dOrigin) {
|
2021-01-21 15:43:35 +00:00
|
|
|
result = dstContext->testCopy(srcView.refProxy(),
|
2020-08-12 18:06:50 +00:00
|
|
|
srcRect,
|
|
|
|
dstPoint);
|
Reland "Reland "Remove support for copyAsDraw in gpu copySurface.""
This reverts commit 4c6f9b767034c6812d868108516c2580dce3cb56.
Reason for revert: Landing with neuxs 7 and androind one fixes
Original change's description:
> Revert "Reland "Remove support for copyAsDraw in gpu copySurface.""
>
> This reverts commit 84ea04949cabc87a88d06c5c6f6aeb944a745911.
>
> Reason for revert: nexus 7 and android one broken
>
> Original change's description:
> > Reland "Remove support for copyAsDraw in gpu copySurface."
> >
> > This reverts commit c5167c053bd58e6afbad83fe493c0231df3f9704.
> >
> > Reason for revert: fixed
> >
> > Original change's description:
> > > Revert "Remove support for copyAsDraw in gpu copySurface."
> > >
> > > This reverts commit 6565506463db042d3d543a1707f473cdf1ef4e9e.
> > >
> > > Reason for revert: seems to break things?
> > >
> > > Original change's description:
> > > > Remove support for copyAsDraw in gpu copySurface.
> > > >
> > > > The major changes on a higher lever are:
> > > > 1) The majority of all copies now go through GrSurfaceProxy::Copy which
> > > > takes in a proxy and returns a new one with the data copied to it. This
> > > > is the most common use case within Ganesh.
> > > >
> > > > 2) The backend copy calls no longer do draws, require origins to be the
> > > > same, and won't do any swizzling or adjustment of subrects. They are
> > > > all implemented to be dumb copy this data to this other spot.
> > > >
> > > > 3) The GrSurfaceContext copy call has now been moved to priv and renamed
> > > > copyNoDraw, and a new priv copyAsDraw was added to GrRenderTargetContext.
> > > >
> > > > 4) WritePixels and ReplaceRenderTarget both need to specifiy the destination
> > > > of copies. They are the only users (besides the GrSurfaceProxy::Copy) which
> > > > call the priv methods on GrSurfaceContext.
> > > >
> > > > Change-Id: Iaf1eb3a73ccaf39a75af77e281dae594f809186f
> > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/217459
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: Id43aa8aa1451e794342e930441d9975b90e6b59f
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218549
> > > Reviewed-by: Greg Daniel <egdaniel@google.com>
> > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> >
> > Change-Id: I1a96f85ae2ff7622a6b57406755d478e7fbcf56e
> > No-Presubmit: true
> > No-Tree-Checks: true
> > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218797
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
>
> Change-Id: I310930a9df30535f45a065263a40239141e15562
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219384
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Greg Daniel <egdaniel@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
Change-Id: I88df4f19aa26ed77b5af4e25d138387cbabd1934
No-Presubmit: true
No-Tree-Checks: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219386
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
2019-06-07 15:43:30 +00:00
|
|
|
} else if (dRenderable == GrRenderable::kYes) {
|
2020-12-16 16:44:47 +00:00
|
|
|
SkASSERT(dstContext->asFillContext());
|
|
|
|
result = dstContext->asFillContext()->blitTexture(
|
2020-08-12 18:06:50 +00:00
|
|
|
std::move(srcView), srcRect, dstPoint);
|
Reland "Reland "Remove support for copyAsDraw in gpu copySurface.""
This reverts commit 4c6f9b767034c6812d868108516c2580dce3cb56.
Reason for revert: Landing with neuxs 7 and androind one fixes
Original change's description:
> Revert "Reland "Remove support for copyAsDraw in gpu copySurface.""
>
> This reverts commit 84ea04949cabc87a88d06c5c6f6aeb944a745911.
>
> Reason for revert: nexus 7 and android one broken
>
> Original change's description:
> > Reland "Remove support for copyAsDraw in gpu copySurface."
> >
> > This reverts commit c5167c053bd58e6afbad83fe493c0231df3f9704.
> >
> > Reason for revert: fixed
> >
> > Original change's description:
> > > Revert "Remove support for copyAsDraw in gpu copySurface."
> > >
> > > This reverts commit 6565506463db042d3d543a1707f473cdf1ef4e9e.
> > >
> > > Reason for revert: seems to break things?
> > >
> > > Original change's description:
> > > > Remove support for copyAsDraw in gpu copySurface.
> > > >
> > > > The major changes on a higher lever are:
> > > > 1) The majority of all copies now go through GrSurfaceProxy::Copy which
> > > > takes in a proxy and returns a new one with the data copied to it. This
> > > > is the most common use case within Ganesh.
> > > >
> > > > 2) The backend copy calls no longer do draws, require origins to be the
> > > > same, and won't do any swizzling or adjustment of subrects. They are
> > > > all implemented to be dumb copy this data to this other spot.
> > > >
> > > > 3) The GrSurfaceContext copy call has now been moved to priv and renamed
> > > > copyNoDraw, and a new priv copyAsDraw was added to GrRenderTargetContext.
> > > >
> > > > 4) WritePixels and ReplaceRenderTarget both need to specifiy the destination
> > > > of copies. They are the only users (besides the GrSurfaceProxy::Copy) which
> > > > call the priv methods on GrSurfaceContext.
> > > >
> > > > Change-Id: Iaf1eb3a73ccaf39a75af77e281dae594f809186f
> > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/217459
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: Id43aa8aa1451e794342e930441d9975b90e6b59f
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218549
> > > Reviewed-by: Greg Daniel <egdaniel@google.com>
> > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> >
> > Change-Id: I1a96f85ae2ff7622a6b57406755d478e7fbcf56e
> > No-Presubmit: true
> > No-Tree-Checks: true
> > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218797
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
>
> Change-Id: I310930a9df30535f45a065263a40239141e15562
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219384
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Greg Daniel <egdaniel@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
Change-Id: I88df4f19aa26ed77b5af4e25d138387cbabd1934
No-Presubmit: true
No-Tree-Checks: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219386
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
2019-06-07 15:43:30 +00:00
|
|
|
}
|
2018-07-31 14:51:17 +00:00
|
|
|
|
|
|
|
bool expectedResult = true;
|
|
|
|
SkIPoint dstOffset = { dstPoint.fX - srcRect.fLeft,
|
|
|
|
dstPoint.fY - srcRect.fTop };
|
|
|
|
SkIRect copiedDstRect = SkIRect::MakeXYWH(dstPoint.fX,
|
|
|
|
dstPoint.fY,
|
|
|
|
srcRect.width(),
|
|
|
|
srcRect.height());
|
|
|
|
|
|
|
|
SkIRect copiedSrcRect;
|
|
|
|
if (!copiedSrcRect.intersect(srcRect, SkIRect::MakeWH(kW, kH))) {
|
|
|
|
expectedResult = false;
|
|
|
|
} else {
|
|
|
|
// If the src rect was clipped, apply same clipping to each side
|
|
|
|
// of copied dst rect.
|
|
|
|
copiedDstRect.fLeft += copiedSrcRect.fLeft - srcRect.fLeft;
|
|
|
|
copiedDstRect.fTop += copiedSrcRect.fTop - srcRect.fTop;
|
|
|
|
copiedDstRect.fRight -= copiedSrcRect.fRight - srcRect.fRight;
|
|
|
|
copiedDstRect.fBottom -= copiedSrcRect.fBottom -
|
|
|
|
srcRect.fBottom;
|
|
|
|
}
|
|
|
|
if (copiedDstRect.isEmpty() ||
|
|
|
|
!copiedDstRect.intersect(SkIRect::MakeWH(kW, kH))) {
|
|
|
|
expectedResult = false;
|
|
|
|
}
|
Reland "Reland "Remove support for copyAsDraw in gpu copySurface.""
This reverts commit 4c6f9b767034c6812d868108516c2580dce3cb56.
Reason for revert: Landing with neuxs 7 and androind one fixes
Original change's description:
> Revert "Reland "Remove support for copyAsDraw in gpu copySurface.""
>
> This reverts commit 84ea04949cabc87a88d06c5c6f6aeb944a745911.
>
> Reason for revert: nexus 7 and android one broken
>
> Original change's description:
> > Reland "Remove support for copyAsDraw in gpu copySurface."
> >
> > This reverts commit c5167c053bd58e6afbad83fe493c0231df3f9704.
> >
> > Reason for revert: fixed
> >
> > Original change's description:
> > > Revert "Remove support for copyAsDraw in gpu copySurface."
> > >
> > > This reverts commit 6565506463db042d3d543a1707f473cdf1ef4e9e.
> > >
> > > Reason for revert: seems to break things?
> > >
> > > Original change's description:
> > > > Remove support for copyAsDraw in gpu copySurface.
> > > >
> > > > The major changes on a higher lever are:
> > > > 1) The majority of all copies now go through GrSurfaceProxy::Copy which
> > > > takes in a proxy and returns a new one with the data copied to it. This
> > > > is the most common use case within Ganesh.
> > > >
> > > > 2) The backend copy calls no longer do draws, require origins to be the
> > > > same, and won't do any swizzling or adjustment of subrects. They are
> > > > all implemented to be dumb copy this data to this other spot.
> > > >
> > > > 3) The GrSurfaceContext copy call has now been moved to priv and renamed
> > > > copyNoDraw, and a new priv copyAsDraw was added to GrRenderTargetContext.
> > > >
> > > > 4) WritePixels and ReplaceRenderTarget both need to specifiy the destination
> > > > of copies. They are the only users (besides the GrSurfaceProxy::Copy) which
> > > > call the priv methods on GrSurfaceContext.
> > > >
> > > > Change-Id: Iaf1eb3a73ccaf39a75af77e281dae594f809186f
> > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/217459
> > > > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> > >
> > > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> > >
> > > Change-Id: Id43aa8aa1451e794342e930441d9975b90e6b59f
> > > No-Presubmit: true
> > > No-Tree-Checks: true
> > > No-Try: true
> > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218549
> > > Reviewed-by: Greg Daniel <egdaniel@google.com>
> > > Commit-Queue: Greg Daniel <egdaniel@google.com>
> >
> > TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
> >
> > Change-Id: I1a96f85ae2ff7622a6b57406755d478e7fbcf56e
> > No-Presubmit: true
> > No-Tree-Checks: true
> > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/218797
> > Reviewed-by: Brian Salomon <bsalomon@google.com>
> > Commit-Queue: Greg Daniel <egdaniel@google.com>
>
> TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
>
> Change-Id: I310930a9df30535f45a065263a40239141e15562
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219384
> Reviewed-by: Greg Daniel <egdaniel@google.com>
> Commit-Queue: Greg Daniel <egdaniel@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
Change-Id: I88df4f19aa26ed77b5af4e25d138387cbabd1934
No-Presubmit: true
No-Tree-Checks: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/219386
Commit-Queue: Greg Daniel <egdaniel@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
2019-06-07 15:43:30 +00:00
|
|
|
if (sOrigin != dOrigin && dRenderable == GrRenderable::kNo) {
|
|
|
|
expectedResult = false;
|
|
|
|
}
|
|
|
|
|
2018-07-31 14:51:17 +00:00
|
|
|
// To make the copied src rect correct we would apply any dst
|
|
|
|
// clipping back to the src rect, but we don't use it again so
|
|
|
|
// don't bother.
|
|
|
|
if (expectedResult != result) {
|
|
|
|
ERRORF(reporter, "Expected return value %d from copySurface, "
|
|
|
|
"got %d.", expectedResult, result);
|
|
|
|
continue;
|
|
|
|
}
|
2016-02-16 15:34:17 +00:00
|
|
|
|
2018-07-31 14:51:17 +00:00
|
|
|
if (!expectedResult || !result) {
|
|
|
|
continue;
|
|
|
|
}
|
2016-02-16 15:34:17 +00:00
|
|
|
|
2018-07-31 14:51:17 +00:00
|
|
|
sk_memset32(read.get(), 0, kW * kH);
|
2020-12-24 01:36:44 +00:00
|
|
|
GrPixmap readPM(ii, read.get(), kRowBytes);
|
|
|
|
if (!dstContext->readPixels(dContext, readPM, {0, 0})) {
|
2018-07-31 14:51:17 +00:00
|
|
|
ERRORF(reporter, "Error calling readPixels");
|
|
|
|
continue;
|
|
|
|
}
|
2016-02-16 15:34:17 +00:00
|
|
|
|
2018-07-31 14:51:17 +00:00
|
|
|
bool abort = false;
|
|
|
|
// Validate that pixels inside copiedDstRect received the correct
|
|
|
|
// value from src and that those outside were not modified.
|
|
|
|
for (int y = 0; y < kH && !abort; ++y) {
|
|
|
|
for (int x = 0; x < kW; ++x) {
|
|
|
|
uint32_t r = read.get()[y * kW + x];
|
|
|
|
if (copiedDstRect.contains(x, y)) {
|
|
|
|
int sx = x - dstOffset.fX;
|
|
|
|
int sy = y - dstOffset.fY;
|
|
|
|
uint32_t s = srcPixels.get()[sy * kW + sx];
|
|
|
|
if (s != r) {
|
|
|
|
ERRORF(reporter, "Expected dst %d,%d to contain "
|
|
|
|
"0x%08x copied from src location %d,%d. Got "
|
|
|
|
"0x%08x", x, y, s, sx, sy, r);
|
|
|
|
abort = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
uint32_t d = dstPixels.get()[y * kW + x];
|
|
|
|
if (d != r) {
|
|
|
|
ERRORF(reporter, "Expected dst %d,%d to be "
|
|
|
|
"unmodified (0x%08x). Got 0x%08x",
|
|
|
|
x, y, d, r);
|
|
|
|
abort = true;
|
|
|
|
break;
|
|
|
|
}
|
2016-02-16 15:34:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|