blob: 88a6bc14b64b9980c411717b77afa51bb3e7b2a4 [file] [log] [blame]
Greg Daniel164a9f02016-02-22 09:56:40 -05001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8// This is a GPU-backend specific test. It relies on static intializers to work
9
10#include "SkTypes.h"
11
Greg Daniel164a9f02016-02-22 09:56:40 -050012#include "GrContextFactory.h"
Robert Phillipse78b7252017-04-06 07:59:41 -040013#include "GrContextPriv.h"
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040014#include "GrSurfaceProxy.h"
Greg Daniel164a9f02016-02-22 09:56:40 -050015#include "GrTest.h"
Brian Salomon58389b92018-03-07 13:01:25 -050016#include "ProxyUtils.h"
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040017#include "SkGr.h"
Greg Daniel164a9f02016-02-22 09:56:40 -050018#include "Test.h"
Timothy Liang760dbc42018-07-17 13:28:20 -040019#include "TestUtils.h"
Greg Daniel164a9f02016-02-22 09:56:40 -050020
kkinnunen2ae4b2e2016-03-31 08:08:20 -070021using sk_gpu_test::GrContextFactory;
Greg Daniel164a9f02016-02-22 09:56:40 -050022
Brian Salomon58389b92018-03-07 13:01:25 -050023void basic_texture_test(skiatest::Reporter* reporter, GrContext* context, SkColorType ct,
Brian Salomon7128fdd2017-05-22 14:00:07 -040024 bool renderTarget) {
Greg Daniel164a9f02016-02-22 09:56:40 -050025 const int kWidth = 16;
26 const int kHeight = 16;
27 SkAutoTMalloc<GrColor> srcBuffer(kWidth*kHeight);
28 SkAutoTMalloc<GrColor> dstBuffer(kWidth*kHeight);
29
30 fill_pixel_data(kWidth, kHeight, srcBuffer.get());
31
Brian Salomon58389b92018-03-07 13:01:25 -050032 auto proxy = sk_gpu_test::MakeTextureProxyFromData(context, renderTarget, kWidth, kHeight, ct,
33 kTopLeft_GrSurfaceOrigin, srcBuffer, 0);
Brian Salomon7128fdd2017-05-22 14:00:07 -040034 REPORTER_ASSERT(reporter, proxy);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040035 if (proxy) {
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -050036 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040037
Brian Salomon5fba7ad2018-03-22 10:01:16 -040038 SkImageInfo dstInfo = SkImageInfo::Make(kWidth, kHeight, ct, kPremul_SkAlphaType);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040039
40 bool result = sContext->readPixels(dstInfo, dstBuffer, 0, 0, 0);
41 REPORTER_ASSERT(reporter, result);
Greg Daniel164a9f02016-02-22 09:56:40 -050042 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
43 dstBuffer,
Greg Daniel164a9f02016-02-22 09:56:40 -050044 kWidth,
45 kHeight));
46
Brian Salomon5fba7ad2018-03-22 10:01:16 -040047 dstInfo = SkImageInfo::Make(10, 2, ct, kPremul_SkAlphaType);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040048 result = sContext->writePixels(dstInfo, srcBuffer, 0, 2, 10);
49 REPORTER_ASSERT(reporter, result);
Robert Phillipse78b7252017-04-06 07:59:41 -040050
Greg Daniel164a9f02016-02-22 09:56:40 -050051 memset(dstBuffer, 0, kWidth*kHeight*sizeof(GrColor));
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040052
53 result = sContext->readPixels(dstInfo, dstBuffer, 0, 2, 10);
54 REPORTER_ASSERT(reporter, result);
55
Greg Daniel164a9f02016-02-22 09:56:40 -050056 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
57 dstBuffer,
Greg Daniel164a9f02016-02-22 09:56:40 -050058 10,
59 2));
Greg Daniel164a9f02016-02-22 09:56:40 -050060 }
61
Brian Salomon58389b92018-03-07 13:01:25 -050062 proxy = sk_gpu_test::MakeTextureProxyFromData(context, renderTarget, kWidth, kHeight, ct,
63 kBottomLeft_GrSurfaceOrigin, srcBuffer, 0);
Brian Salomon7128fdd2017-05-22 14:00:07 -040064 REPORTER_ASSERT(reporter, proxy);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040065 if (proxy) {
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -050066 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040067
Brian Salomon5fba7ad2018-03-22 10:01:16 -040068 SkImageInfo dstInfo = SkImageInfo::Make(kWidth, kHeight, ct, kPremul_SkAlphaType);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040069
70 bool result = sContext->readPixels(dstInfo, dstBuffer, 0, 0, 0);
71 REPORTER_ASSERT(reporter, result);
Greg Daniel164a9f02016-02-22 09:56:40 -050072 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
73 dstBuffer,
Greg Daniel164a9f02016-02-22 09:56:40 -050074 kWidth,
75 kHeight));
76
Brian Salomon5fba7ad2018-03-22 10:01:16 -040077 dstInfo = SkImageInfo::Make(4, 5, ct, kPremul_SkAlphaType);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040078 result = sContext->writePixels(dstInfo, srcBuffer, 0, 5, 4);
79 REPORTER_ASSERT(reporter, result);
Robert Phillipse78b7252017-04-06 07:59:41 -040080
Greg Daniel164a9f02016-02-22 09:56:40 -050081 memset(dstBuffer, 0, kWidth*kHeight*sizeof(GrColor));
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040082
83 result = sContext->readPixels(dstInfo, dstBuffer, 0, 5, 4);
84 REPORTER_ASSERT(reporter, result);
85
Greg Daniel164a9f02016-02-22 09:56:40 -050086 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
87 dstBuffer,
Greg Daniel164a9f02016-02-22 09:56:40 -050088 4,
89 5));
90
Greg Daniel164a9f02016-02-22 09:56:40 -050091 }
92}
93
Timothy Lianga8046af2018-07-19 09:58:00 -040094DEF_GPUTEST_FOR_RENDERING_CONTEXTS(GrUploadPixelsTests, reporter, ctxInfo) {
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040095 // RGBA
Brian Salomon58389b92018-03-07 13:01:25 -050096 basic_texture_test(reporter, ctxInfo.grContext(), kRGBA_8888_SkColorType, false);
97 basic_texture_test(reporter, ctxInfo.grContext(), kRGBA_8888_SkColorType, true);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040098
99 // BGRA
Brian Salomon58389b92018-03-07 13:01:25 -0500100 basic_texture_test(reporter, ctxInfo.grContext(), kBGRA_8888_SkColorType, false);
101 basic_texture_test(reporter, ctxInfo.grContext(), kBGRA_8888_SkColorType, true);
Greg Daniel164a9f02016-02-22 09:56:40 -0500102}