blob: 9e8e5b4fa1b09e54654e9bcef86d07d07dae0dec [file] [log] [blame]
egdaniel3fe03272016-08-15 10:59:17 -07001/*
2 * Copyright 2016 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/*
9 * This is a straightforward test of using packed pixel configs (4444, 565).
10 * This test will make sure that these RGBA_4444 and RGB_565 are always supported
11 * as valid texturing configs.
12 */
13
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "tests/Test.h"
egdaniel3fe03272016-08-15 10:59:17 -070015
Mike Kleinc0bd9f92019-04-23 12:05:21 -050016#include "include/gpu/GrContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050017#include "src/gpu/GrContextPriv.h"
Brian Salomonf2ebdd92019-09-30 12:15:30 -040018#include "src/gpu/GrImageInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "src/gpu/GrProxyProvider.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040020#include "src/gpu/GrTextureProxy.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "tools/gpu/ProxyUtils.h"
egdaniel3fe03272016-08-15 10:59:17 -070022
23static const int DEV_W = 10, DEV_H = 10;
egdaniel3fe03272016-08-15 10:59:17 -070024static const uint8_t TOL = 0x4;
25
26static void check_component(skiatest::Reporter* reporter, uint8_t control, uint8_t test) {
27 uint8_t diff = 0;
28 if (control >= test) {
29 diff = control - test;
30 } else {
31 diff = test - control;
32 }
33 REPORTER_ASSERT(reporter, diff < TOL);
34}
35
36static uint8_t expand_value(uint8_t original, int sigBits) {
37 SkASSERT(sigBits >= 4);
38 uint8_t inSigBitShift = 8 - sigBits;
39 uint8_t duplBitShift = sigBits - inSigBitShift;
40 return (original << inSigBitShift) + (original >> duplBitShift);
41}
42
43static void check_4444(skiatest::Reporter* reporter,
44 const SkTDArray<uint16_t>& controlData,
45 const SkTDArray<uint32_t>& readBuffer) {
46 for (int j = 0; j < DEV_H; ++j) {
47 for (int i = 0; i < DEV_W; ++i) {
48 uint16_t control = controlData[i + j * DEV_H];
49 uint32_t test = readBuffer[i + j * DEV_H];
50
51 // Test alpha component
52 uint8_t ctrlComp = expand_value(control & 0xF, 4);
53 uint8_t testComp = GrColorUnpackA(test);
54 check_component(reporter, ctrlComp, testComp);
55
56 // Test blue component
57 ctrlComp = expand_value((control >> 4) & 0xF, 4);
58 testComp = GrColorUnpackB(test);
59 check_component(reporter, ctrlComp, testComp);
60
61 // Test green component
62 ctrlComp = expand_value((control >> 8) & 0xF, 4);
63 testComp = GrColorUnpackG(test);
64 check_component(reporter, ctrlComp, testComp);
65
66 // Test red component
67 ctrlComp = expand_value((control >> 12) & 0xF, 4);
68 testComp = GrColorUnpackR(test);
69 check_component(reporter, ctrlComp, testComp);
70 }
71 }
72}
73
74static void check_565(skiatest::Reporter* reporter,
75 const SkTDArray<uint16_t>& controlData,
76 const SkTDArray<GrColor>& readBuffer) {
77 for (int j = 0; j < DEV_H; ++j) {
78 for (int i = 0; i < DEV_W; ++i) {
79 uint16_t control = controlData[i + j * DEV_H];
80 GrColor test = readBuffer[i + j * DEV_H];
81 // Test blue component (5 bit control)
82 uint8_t ctrlComp = expand_value(control & 0x1F, 5);
83 uint8_t testComp = GrColorUnpackB(test);
84 check_component(reporter, ctrlComp, testComp);
85
86 // Test green component (6 bit control)
87 ctrlComp = expand_value((control >> 5) & 0x3F, 6);
88 testComp = GrColorUnpackG(test);
89 check_component(reporter, ctrlComp, testComp);
90
91 // Test red component (5 bit control)
92 ctrlComp = expand_value((control >> 11) & 0x1F, 5);
93 testComp = GrColorUnpackR(test);
94 check_component(reporter, ctrlComp, testComp);
95 }
96 }
97}
98
Brian Salomon58389b92018-03-07 13:01:25 -050099static void run_test(skiatest::Reporter* reporter, GrContext* context, int arraySize,
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400100 SkColorType colorType) {
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400101 SkTDArray<uint16_t> controlPixelData;
Robert Phillips301431d2017-03-29 12:08:49 -0400102 // We will read back into an 8888 buffer since 565/4444 read backs aren't supported
egdaniel3fe03272016-08-15 10:59:17 -0700103 SkTDArray<GrColor> readBuffer;
104 controlPixelData.setCount(arraySize);
105 readBuffer.setCount(arraySize);
106
107 for (int i = 0; i < arraySize; i += 2) {
Brian Osman91b5a762018-07-12 09:35:37 -0400108 controlPixelData[i] = 0xF00F;
109 controlPixelData[i + 1] = 0xA62F;
egdaniel3fe03272016-08-15 10:59:17 -0700110 }
111
Brian Salomon5fba7ad2018-03-22 10:01:16 -0400112 const SkImageInfo dstInfo =
113 SkImageInfo::Make(DEV_W, DEV_H, kRGBA_8888_SkColorType, kPremul_SkAlphaType);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400114
115 for (auto origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin }) {
Brian Salomon4eda7102019-10-21 15:04:52 -0400116 auto grColorType = SkColorTypeToGrColorType(colorType);
117 auto proxy = sk_gpu_test::MakeTextureProxyFromData(
118 context, GrRenderable::kNo, origin,
119 {grColorType, kPremul_SkAlphaType, nullptr, DEV_W, DEV_H},
120 controlPixelData.begin(), 0);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400121 SkASSERT(proxy);
122
Greg Danielbfa19c42019-12-19 16:41:40 -0500123 GrSwizzle readSwizzle = context->priv().caps()->getReadSwizzle(proxy->backendFormat(),
124 grColorType);
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400125
Greg Daniel3912a4b2020-01-14 09:56:04 -0500126 GrSurfaceProxyView view(std::move(proxy), origin, readSwizzle);
127 GrSurfaceContext sContext(context, std::move(view), grColorType, kPremul_SkAlphaType,
128 nullptr);
Greg Danielbfa19c42019-12-19 16:41:40 -0500129
130 if (!sContext.readPixels(dstInfo, readBuffer.begin(), 0, {0, 0})) {
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400131 // We only require this to succeed if the format is renderable.
132 REPORTER_ASSERT(reporter, !context->colorTypeSupportedAsSurface(colorType));
133 return;
134 }
Robert Phillipsbab2dbb2017-04-17 07:43:27 -0400135
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400136 if (kARGB_4444_SkColorType == colorType) {
egdaniel3fe03272016-08-15 10:59:17 -0700137 check_4444(reporter, controlPixelData, readBuffer);
138 } else {
Brian Salomon19eaf2d2018-03-19 16:06:44 -0400139 SkASSERT(kRGB_565_SkColorType == colorType);
egdaniel3fe03272016-08-15 10:59:17 -0700140 check_565(reporter, controlPixelData, readBuffer);
141 }
142 }
143}
144
145static const int CONTROL_ARRAY_SIZE = DEV_W * DEV_H;
146
147DEF_GPUTEST_FOR_RENDERING_CONTEXTS(RGBA4444TextureTest, reporter, ctxInfo) {
Jim Van Vertha3407ab2019-03-15 15:22:39 -0400148 if (ctxInfo.grContext()->colorTypeSupportedAsImage(kARGB_4444_SkColorType)) {
149 run_test(reporter, ctxInfo.grContext(), CONTROL_ARRAY_SIZE, kARGB_4444_SkColorType);
150 }
egdaniel3fe03272016-08-15 10:59:17 -0700151}
152
153DEF_GPUTEST_FOR_RENDERING_CONTEXTS(RGB565TextureTest, reporter, ctxInfo) {
Jim Van Vertha3407ab2019-03-15 15:22:39 -0400154 if (ctxInfo.grContext()->colorTypeSupportedAsImage(kRGB_565_SkColorType)) {
155 run_test(reporter, ctxInfo.grContext(), CONTROL_ARRAY_SIZE, kRGB_565_SkColorType);
156 }
egdaniel3fe03272016-08-15 10:59:17 -0700157}