blob: f35480a6ce75f9e5cc64c5bef4dcc53886ec0f0a [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
Jim Van Verth91589312017-06-22 12:52:46 -040012#if SK_SUPPORT_GPU && defined(SK_VULKAN)
Greg Daniel164a9f02016-02-22 09:56:40 -050013
14#include "GrContextFactory.h"
Robert Phillipse78b7252017-04-06 07:59:41 -040015#include "GrContextPriv.h"
Robert Phillips0bd24dc2018-01-16 08:06:32 -050016#include "GrProxyProvider.h"
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040017#include "GrSurfaceProxy.h"
Greg Daniel164a9f02016-02-22 09:56:40 -050018#include "GrTest.h"
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040019#include "SkGr.h"
Greg Daniel164a9f02016-02-22 09:56:40 -050020#include "Test.h"
21#include "vk/GrVkGpu.h"
22
kkinnunen2ae4b2e2016-03-31 08:08:20 -070023using sk_gpu_test::GrContextFactory;
Greg Daniel164a9f02016-02-22 09:56:40 -050024
25void fill_pixel_data(int width, int height, GrColor* data) {
26
27 // build red-green gradient
28 for (int j = 0; j < height; ++j) {
29 for (int i = 0; i < width; ++i) {
30 unsigned int red = (unsigned int)(256.f*(i / (float)width));
31 unsigned int green = (unsigned int)(256.f*(j / (float)height));
32 data[i + j*width] = GrColorPackRGBA(red - (red>>8), green - (green>>8), 0xff, 0xff);
33 }
34 }
35}
36
37bool does_full_buffer_contain_correct_color(GrColor* srcBuffer,
38 GrColor* dstBuffer,
Greg Daniel164a9f02016-02-22 09:56:40 -050039 int width,
40 int height) {
41 GrColor* srcPtr = srcBuffer;
42 GrColor* dstPtr = dstBuffer;
43 for (int j = 0; j < height; ++j) {
44 for (int i = 0; i < width; ++i) {
45 if (srcPtr[i] != dstPtr[i]) {
46 return false;
47 }
48 }
49 srcPtr += width;
50 dstPtr += width;
51 }
52 return true;
53}
54
55void basic_texture_test(skiatest::Reporter* reporter, GrContext* context, GrPixelConfig config,
Brian Salomon7128fdd2017-05-22 14:00:07 -040056 bool renderTarget) {
Robert Phillips1afd4cd2018-01-08 13:40:32 -050057 GrProxyProvider* proxyProvider = context->contextPriv().proxyProvider();
58
Greg Daniel164a9f02016-02-22 09:56:40 -050059 const int kWidth = 16;
60 const int kHeight = 16;
61 SkAutoTMalloc<GrColor> srcBuffer(kWidth*kHeight);
62 SkAutoTMalloc<GrColor> dstBuffer(kWidth*kHeight);
63
64 fill_pixel_data(kWidth, kHeight, srcBuffer.get());
65
Greg Daniel164a9f02016-02-22 09:56:40 -050066 GrSurfaceDesc surfDesc;
67 surfDesc.fFlags = renderTarget ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
Greg Daniel164a9f02016-02-22 09:56:40 -050068 surfDesc.fOrigin = kTopLeft_GrSurfaceOrigin;
69 surfDesc.fWidth = kWidth;
70 surfDesc.fHeight = kHeight;
71 surfDesc.fConfig = config;
Brian Salomonbdecacf2018-02-02 20:32:49 -050072 surfDesc.fSampleCnt = 1;
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040073
74 SkColorType ct;
75 SkAssertResult(GrPixelConfigToColorType(config, &ct));
76
Robert Phillips0bd24dc2018-01-16 08:06:32 -050077 sk_sp<GrTextureProxy> proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo,
78 srcBuffer, 0);
Brian Salomon7128fdd2017-05-22 14:00:07 -040079 REPORTER_ASSERT(reporter, proxy);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040080 if (proxy) {
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -050081 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040082
83 SkImageInfo dstInfo = SkImageInfo::Make(kWidth, kHeight, ct, kOpaque_SkAlphaType);
84
85 bool result = sContext->readPixels(dstInfo, dstBuffer, 0, 0, 0);
86 REPORTER_ASSERT(reporter, result);
Greg Daniel164a9f02016-02-22 09:56:40 -050087 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
88 dstBuffer,
Greg Daniel164a9f02016-02-22 09:56:40 -050089 kWidth,
90 kHeight));
91
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040092 dstInfo = SkImageInfo::Make(10, 2, ct, kOpaque_SkAlphaType);
93 result = sContext->writePixels(dstInfo, srcBuffer, 0, 2, 10);
94 REPORTER_ASSERT(reporter, result);
Robert Phillipse78b7252017-04-06 07:59:41 -040095
Greg Daniel164a9f02016-02-22 09:56:40 -050096 memset(dstBuffer, 0, kWidth*kHeight*sizeof(GrColor));
Robert Phillipsbab2dbb2017-04-17 07:43:27 -040097
98 result = sContext->readPixels(dstInfo, dstBuffer, 0, 2, 10);
99 REPORTER_ASSERT(reporter, result);
100
Greg Daniel164a9f02016-02-22 09:56:40 -0500101 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
102 dstBuffer,
Greg Daniel164a9f02016-02-22 09:56:40 -0500103 10,
104 2));
Greg Daniel164a9f02016-02-22 09:56:40 -0500105 }
106
107 surfDesc.fOrigin = kBottomLeft_GrSurfaceOrigin;
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400108
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500109 proxy = proxyProvider->createTextureProxy(surfDesc, SkBudgeted::kNo, srcBuffer, 0);
Brian Salomon7128fdd2017-05-22 14:00:07 -0400110 REPORTER_ASSERT(reporter, proxy);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400111 if (proxy) {
Robert Phillipsd5f9cdd2018-01-31 09:29:48 -0500112 sk_sp<GrSurfaceContext> sContext = context->contextPriv().makeWrappedSurfaceContext(proxy);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400113
114 SkImageInfo dstInfo = SkImageInfo::Make(kWidth, kHeight, ct, kOpaque_SkAlphaType);
115
116 bool result = sContext->readPixels(dstInfo, dstBuffer, 0, 0, 0);
117 REPORTER_ASSERT(reporter, result);
Greg Daniel164a9f02016-02-22 09:56:40 -0500118 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
119 dstBuffer,
Greg Daniel164a9f02016-02-22 09:56:40 -0500120 kWidth,
121 kHeight));
122
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400123 dstInfo = SkImageInfo::Make(4, 5, ct, kOpaque_SkAlphaType);
124 result = sContext->writePixels(dstInfo, srcBuffer, 0, 5, 4);
125 REPORTER_ASSERT(reporter, result);
Robert Phillipse78b7252017-04-06 07:59:41 -0400126
Greg Daniel164a9f02016-02-22 09:56:40 -0500127 memset(dstBuffer, 0, kWidth*kHeight*sizeof(GrColor));
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400128
129 result = sContext->readPixels(dstInfo, dstBuffer, 0, 5, 4);
130 REPORTER_ASSERT(reporter, result);
131
Greg Daniel164a9f02016-02-22 09:56:40 -0500132 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_color(srcBuffer,
133 dstBuffer,
Greg Daniel164a9f02016-02-22 09:56:40 -0500134 4,
135 5));
136
Greg Daniel164a9f02016-02-22 09:56:40 -0500137 }
138}
139
bsalomondc0fcd42016-04-11 14:21:33 -0700140DEF_GPUTEST_FOR_VULKAN_CONTEXT(VkUploadPixelsTests, reporter, ctxInfo) {
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400141 // RGBA
Brian Salomon7128fdd2017-05-22 14:00:07 -0400142 basic_texture_test(reporter, ctxInfo.grContext(), kRGBA_8888_GrPixelConfig, false);
143 basic_texture_test(reporter, ctxInfo.grContext(), kRGBA_8888_GrPixelConfig, true);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400144
145 // BGRA
Brian Salomon7128fdd2017-05-22 14:00:07 -0400146 basic_texture_test(reporter, ctxInfo.grContext(), kBGRA_8888_GrPixelConfig, false);
147 basic_texture_test(reporter, ctxInfo.grContext(), kBGRA_8888_GrPixelConfig, true);
Greg Daniel164a9f02016-02-22 09:56:40 -0500148}
149
150#endif