blob: 537b5fe3faac0090631bdc8a61bc976c8e043935 [file] [log] [blame]
Jim Van Verth2e5eaf02017-06-21 15:55:46 -04001/*
2 * Copyright 2017 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 Verth2e5eaf02017-06-21 15:55:46 -040012#include "GrContextFactory.h"
13#include "GrContextPriv.h"
14#include "GrGpu.h"
15#include "GrResourceProvider.h"
16#include "GrSurfaceProxy.h"
17#include "GrTexture.h"
Jim Van Verth2e5eaf02017-06-21 15:55:46 -040018#include "SkGr.h"
19#include "SkSurface.h"
20#include "Test.h"
21
22using sk_gpu_test::GrContextFactory;
23
24void fill_transfer_data(int left, int top, int width, int height, int bufferWidth,
25 GrColor* data) {
26
27 // build red-green gradient
28 for (int j = top; j < top + height; ++j) {
29 for (int i = left; i < left + width; ++i) {
30 unsigned int red = (unsigned int)(256.f*((i - left) / (float)width));
31 unsigned int green = (unsigned int)(256.f*((j - top) / (float)height));
32 data[i + j*bufferWidth] = GrColorPackRGBA(red - (red>>8),
33 green - (green>>8), 0xff, 0xff);
34 }
35 }
36}
37
38bool does_full_buffer_contain_correct_values(GrColor* srcBuffer,
39 GrColor* dstBuffer,
40 int width,
41 int height,
42 int bufferWidth,
Brian Salomona6948702018-06-01 15:33:20 -040043 int bufferHeight) {
Jim Van Verth2e5eaf02017-06-21 15:55:46 -040044 GrColor* srcPtr = srcBuffer;
Brian Salomona6948702018-06-01 15:33:20 -040045 GrColor* dstPtr = dstBuffer;
Jim Van Verth2e5eaf02017-06-21 15:55:46 -040046
47 for (int j = 0; j < height; ++j) {
48 for (int i = 0; i < width; ++i) {
49 if (srcPtr[i] != dstPtr[i]) {
50 return false;
51 }
52 }
53 srcPtr += bufferWidth;
Brian Salomona6948702018-06-01 15:33:20 -040054 dstPtr += bufferWidth;
Jim Van Verth2e5eaf02017-06-21 15:55:46 -040055 }
56 return true;
57}
58
Brian Salomonc320b152018-02-20 14:05:36 -050059void basic_transfer_test(skiatest::Reporter* reporter, GrContext* context, GrColorType colorType,
Brian Salomona6948702018-06-01 15:33:20 -040060 bool renderTarget) {
Brian Salomonc7fe0f72018-05-11 10:14:21 -040061 if (GrCaps::kNone_MapFlags == context->contextPriv().caps()->mapBufferFlags()) {
Brian Salomon7f56d3d2017-10-09 13:02:49 -040062 return;
63 }
64
Robert Phillips6be756b2018-01-16 15:07:54 -050065 auto resourceProvider = context->contextPriv().resourceProvider();
Robert Phillipsf35fd8d2018-01-22 10:48:15 -050066 GrGpu* gpu = context->contextPriv().getGpu();
Robert Phillips6be756b2018-01-16 15:07:54 -050067
Jim Van Verth2e5eaf02017-06-21 15:55:46 -040068 // set up the data
69 const int kTextureWidth = 16;
70 const int kTextureHeight = 16;
71 const int kBufferWidth = 20;
72 const int kBufferHeight = 16;
73 size_t rowBytes = kBufferWidth * sizeof(GrColor);
74 SkAutoTMalloc<GrColor> srcBuffer(kBufferWidth*kBufferHeight);
75 SkAutoTMalloc<GrColor> dstBuffer(kBufferWidth*kBufferHeight);
76
77 fill_transfer_data(0, 0, kTextureWidth, kTextureHeight, kBufferWidth, srcBuffer.get());
78
79 // create and fill transfer buffer
80 size_t size = rowBytes*kBufferHeight;
Chris Daltond004e0b2018-09-27 09:28:03 -060081 auto bufferFlags = GrResourceProvider::Flags::kNoPendingIO;
Robert Phillips6be756b2018-01-16 15:07:54 -050082 sk_sp<GrBuffer> buffer(resourceProvider->createBuffer(size,
83 kXferCpuToGpu_GrBufferType,
84 kDynamic_GrAccessPattern,
85 bufferFlags));
Jim Van Verth2e5eaf02017-06-21 15:55:46 -040086 if (!buffer) {
87 return;
88 }
89
90 void* data = buffer->map();
91 memcpy(data, srcBuffer.get(), size);
92 buffer->unmap();
93
Brian Salomonc320b152018-02-20 14:05:36 -050094 for (auto srgbEncoding : {GrSRGBEncoded::kNo, GrSRGBEncoded::kYes}) {
95 // create texture
96 GrSurfaceDesc desc;
97 desc.fFlags = renderTarget ? kRenderTarget_GrSurfaceFlag : kNone_GrSurfaceFlags;
Brian Salomonc320b152018-02-20 14:05:36 -050098 desc.fWidth = kTextureWidth;
99 desc.fHeight = kTextureHeight;
100 desc.fConfig = GrColorTypeToPixelConfig(colorType, srgbEncoding);
101 desc.fSampleCnt = 1;
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400102
Brian Salomonc320b152018-02-20 14:05:36 -0500103 if (kUnknown_GrPixelConfig == desc.fConfig) {
104 SkASSERT(GrSRGBEncoded::kYes == srgbEncoding);
105 continue;
106 }
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400107
Brian Salomonc7fe0f72018-05-11 10:14:21 -0400108 if (!context->contextPriv().caps()->isConfigTexturable(desc.fConfig) ||
109 (renderTarget && !context->contextPriv().caps()->isConfigRenderable(desc.fConfig))) {
Brian Salomonc320b152018-02-20 14:05:36 -0500110 continue;
111 }
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400112
Brian Salomonc320b152018-02-20 14:05:36 -0500113 sk_sp<GrTexture> tex = resourceProvider->createTexture(desc, SkBudgeted::kNo);
Robert Phillips6fc30922018-07-27 12:21:37 -0400114 if (!tex) {
115 continue;
116 }
Robert Phillips16d8ec62017-07-27 16:16:25 -0400117
Brian Salomonc320b152018-02-20 14:05:36 -0500118 //////////////////////////
119 // transfer full data
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400120
Brian Salomonc320b152018-02-20 14:05:36 -0500121 bool result;
122 result = gpu->transferPixels(tex.get(), 0, 0, kTextureWidth, kTextureHeight, colorType,
123 buffer.get(), 0, rowBytes);
124 REPORTER_ASSERT(reporter, result);
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400125
Brian Salomonc320b152018-02-20 14:05:36 -0500126 memset(dstBuffer.get(), 0xCDCD, size);
Brian Salomona6948702018-06-01 15:33:20 -0400127 result = gpu->readPixels(tex.get(), 0, 0, kTextureWidth, kTextureHeight, colorType,
Brian Salomonc320b152018-02-20 14:05:36 -0500128 dstBuffer.get(), rowBytes);
129 if (result) {
130 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_values(srcBuffer,
131 dstBuffer,
132 kTextureWidth,
133 kTextureHeight,
134 kBufferWidth,
Brian Salomona6948702018-06-01 15:33:20 -0400135 kBufferHeight));
Brian Salomonc320b152018-02-20 14:05:36 -0500136 }
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400137
Brian Salomonc320b152018-02-20 14:05:36 -0500138 //////////////////////////
139 // transfer partial data
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400140
Brian Salomonc320b152018-02-20 14:05:36 -0500141 const int kLeft = 2;
142 const int kTop = 10;
143 const int kWidth = 10;
144 const int kHeight = 2;
145
146 // change color of subrectangle
147 fill_transfer_data(kLeft, kTop, kWidth, kHeight, kBufferWidth, srcBuffer.get());
148 data = buffer->map();
149 memcpy(data, srcBuffer.get(), size);
150 buffer->unmap();
151
152 size_t offset = sizeof(GrColor) * (kTop * kBufferWidth + kLeft);
153 result = gpu->transferPixels(tex.get(), kLeft, kTop, kWidth, kHeight, colorType,
154 buffer.get(), offset, rowBytes);
155 REPORTER_ASSERT(reporter, result);
156
157 memset(dstBuffer.get(), 0xCDCD, size);
Brian Salomona6948702018-06-01 15:33:20 -0400158 result = gpu->readPixels(tex.get(), 0, 0, kTextureWidth, kTextureHeight, colorType,
Brian Salomonc320b152018-02-20 14:05:36 -0500159 dstBuffer.get(), rowBytes);
160 if (result) {
161 REPORTER_ASSERT(reporter, does_full_buffer_contain_correct_values(srcBuffer,
162 dstBuffer,
163 kTextureWidth,
164 kTextureHeight,
165 kBufferWidth,
Brian Salomona6948702018-06-01 15:33:20 -0400166 kBufferHeight));
Brian Salomonc320b152018-02-20 14:05:36 -0500167 }
Jim Van Verth52fb02e2017-06-27 10:36:56 -0400168 }
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400169}
170
171DEF_GPUTEST_FOR_RENDERING_CONTEXTS(TransferPixelsTest, reporter, ctxInfo) {
172 // RGBA
Brian Salomona6948702018-06-01 15:33:20 -0400173 basic_transfer_test(reporter, ctxInfo.grContext(), GrColorType::kRGBA_8888, false);
174 basic_transfer_test(reporter, ctxInfo.grContext(), GrColorType::kRGBA_8888, true);
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400175
176 // BGRA
Brian Salomona6948702018-06-01 15:33:20 -0400177 basic_transfer_test(reporter, ctxInfo.grContext(), GrColorType::kBGRA_8888, false);
178 basic_transfer_test(reporter, ctxInfo.grContext(), GrColorType::kBGRA_8888, true);
Jim Van Verth2e5eaf02017-06-21 15:55:46 -0400179}