blob: 0017c8f6facd8b1e0b6728231a194e9191569ed5 [file] [log] [blame]
joshualittee5da552014-07-16 13:32:56 -07001/*
2 * Copyright 2014 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 floating point textures, which are
10 * supported on some platforms. As of right now, this test only supports
11 * 32 bit floating point textures, and indeed floating point test values
12 * have been selected to require 32 bits of precision and full IEEE conformance
13 */
bsalomond309e7a2015-04-30 14:18:54 -070014
Mike Kleinc0bd9f92019-04-23 12:05:21 -050015#include "tests/Test.h"
kkinnunen15302832015-12-01 04:35:26 -080016
Robert Phillipsb7bfbc22020-07-01 12:55:01 -040017#include "include/gpu/GrDirectContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050018#include "include/private/SkHalf.h"
19#include "src/gpu/GrContextPriv.h"
Brian Salomonf2ebdd92019-09-30 12:15:30 -040020#include "src/gpu/GrImageInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "src/gpu/GrProxyProvider.h"
Robert Phillipse19babf2020-04-06 13:57:30 -040022#include "src/gpu/GrSurfaceContext.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040023#include "src/gpu/GrTextureProxy.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050024#include "tools/gpu/ProxyUtils.h"
joshualittee5da552014-07-16 13:32:56 -070025
Hal Canary8a001442018-09-19 11:31:27 -040026#include <float.h>
27
joshualittee5da552014-07-16 13:32:56 -070028static const int DEV_W = 100, DEV_H = 100;
joshualittee5da552014-07-16 13:32:56 -070029
jvanverthfb5df432015-05-21 08:12:27 -070030template <typename T>
Adlai Hollerd169e192020-08-10 15:43:05 -040031void runFPTest(skiatest::Reporter* reporter, GrDirectContext* dContext,
Robert Phillips44333c52020-06-30 13:28:00 -040032 T min, T max, T epsilon, T maxInt,
Brian Salomonc320b152018-02-20 14:05:36 -050033 int arraySize, GrColorType colorType) {
csmartdalton6aa0e112017-02-08 16:14:11 -050034 if (0 != arraySize % 4) {
35 REPORT_FAILURE(reporter, "(0 != arraySize % 4)",
36 SkString("arraySize must be divisible by 4."));
37 return;
38 }
39
jvanverthfb5df432015-05-21 08:12:27 -070040 SkTDArray<T> controlPixelData, readBuffer;
41 controlPixelData.setCount(arraySize);
42 readBuffer.setCount(arraySize);
mtkleincada95a2015-01-22 13:50:35 -080043
jvanverthfb5df432015-05-21 08:12:27 -070044 for (int i = 0; i < arraySize; i += 4) {
45 controlPixelData[i + 0] = min;
46 controlPixelData[i + 1] = max;
47 controlPixelData[i + 2] = epsilon;
48 controlPixelData[i + 3] = maxInt;
joshualittee5da552014-07-16 13:32:56 -070049 }
50
Brian Salomon2a4f9832018-03-03 22:43:43 -050051 for (auto origin : {kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin}) {
Brian Salomon4eda7102019-10-21 15:04:52 -040052 auto fpProxy = sk_gpu_test::MakeTextureProxyFromData(
Adlai Hollerd169e192020-08-10 15:43:05 -040053 dContext, GrRenderable::kYes, origin,
Brian Salomon4eda7102019-10-21 15:04:52 -040054 {colorType, kPremul_SkAlphaType, nullptr, DEV_W, DEV_H},
55 controlPixelData.begin(), 0);
kkinnunen15302832015-12-01 04:35:26 -080056 // Floating point textures are NOT supported everywhere
Robert Phillipse78b7252017-04-06 07:59:41 -040057 if (!fpProxy) {
kkinnunen15302832015-12-01 04:35:26 -080058 continue;
joshualittee5da552014-07-16 13:32:56 -070059 }
Robert Phillipsf41c22f2017-04-18 07:48:58 -040060
Adlai Hollerd169e192020-08-10 15:43:05 -040061 GrSwizzle swizzle = dContext->priv().caps()->getReadSwizzle(fpProxy->backendFormat(),
62 colorType);
Greg Daniel3912a4b2020-01-14 09:56:04 -050063 GrSurfaceProxyView view(std::move(fpProxy), origin, swizzle);
Adlai Hollerd169e192020-08-10 15:43:05 -040064 auto sContext = GrSurfaceContext::Make(dContext, std::move(view), colorType,
Greg Danielbfa19c42019-12-19 16:41:40 -050065 kPremul_SkAlphaType, nullptr);
Robert Phillipsf41c22f2017-04-18 07:48:58 -040066 REPORTER_ASSERT(reporter, sContext);
67
Adlai Hollerd169e192020-08-10 15:43:05 -040068 bool result = sContext->readPixels(dContext,
69 {colorType, kPremul_SkAlphaType, nullptr, DEV_W, DEV_H},
70 readBuffer.begin(), 0, {0, 0});
Robert Phillipse78b7252017-04-06 07:59:41 -040071 REPORTER_ASSERT(reporter, result);
kkinnunen15302832015-12-01 04:35:26 -080072 REPORTER_ASSERT(reporter,
73 0 == memcmp(readBuffer.begin(), controlPixelData.begin(), readBuffer.bytes()));
joshualittee5da552014-07-16 13:32:56 -070074 }
75}
76
jvanverthfb5df432015-05-21 08:12:27 -070077static const int HALF_ALPHA_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 1 /*alpha-only*/;
78static const SkHalf kMaxIntegerRepresentableInHalfFloatingPoint = 0x6800; // 2 ^ 11
jvanverth1334c212014-12-18 05:44:55 -080079
Brian Osman3a887252016-11-17 13:27:31 -050080DEF_GPUTEST_FOR_RENDERING_CONTEXTS(HalfFloatAlphaTextureTest, reporter, ctxInfo) {
Robert Phillips6d344c32020-07-06 10:56:46 -040081 auto direct = ctxInfo.directContext();
Robert Phillips44333c52020-06-30 13:28:00 -040082
83 runFPTest<SkHalf>(reporter, direct, SK_HalfMin, SK_HalfMax, SK_HalfEpsilon,
Brian Salomonc320b152018-02-20 14:05:36 -050084 kMaxIntegerRepresentableInHalfFloatingPoint, HALF_ALPHA_CONTROL_ARRAY_SIZE,
85 GrColorType::kAlpha_F16);
jvanverthfb5df432015-05-21 08:12:27 -070086}
jvanverth1334c212014-12-18 05:44:55 -080087
jvanverthfb5df432015-05-21 08:12:27 -070088static const int HALF_RGBA_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 4 /*RGBA*/;
jvanverth1334c212014-12-18 05:44:55 -080089
Brian Osman3a887252016-11-17 13:27:31 -050090DEF_GPUTEST_FOR_RENDERING_CONTEXTS(HalfFloatRGBATextureTest, reporter, ctxInfo) {
Robert Phillips6d344c32020-07-06 10:56:46 -040091 auto direct = ctxInfo.directContext();
Robert Phillips44333c52020-06-30 13:28:00 -040092
93 runFPTest<SkHalf>(reporter, direct, SK_HalfMin, SK_HalfMax, SK_HalfEpsilon,
Brian Salomonc320b152018-02-20 14:05:36 -050094 kMaxIntegerRepresentableInHalfFloatingPoint, HALF_RGBA_CONTROL_ARRAY_SIZE,
95 GrColorType::kRGBA_F16);
jvanverth28f9c602014-12-05 13:06:35 -080096}