blob: 84f2a592d854e24720bf6b7a5143d43f6fe27782 [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
joshualittee5da552014-07-16 13:32:56 -070015#include <float.h>
16#include "Test.h"
kkinnunen15302832015-12-01 04:35:26 -080017
bsalomond309e7a2015-04-30 14:18:54 -070018#if SK_SUPPORT_GPU
joshualittee5da552014-07-16 13:32:56 -070019#include "GrContext.h"
20#include "GrTexture.h"
jvanverth28f9c602014-12-05 13:06:35 -080021#include "SkHalf.h"
joshualittee5da552014-07-16 13:32:56 -070022
23static const int DEV_W = 100, DEV_H = 100;
joshualittee5da552014-07-16 13:32:56 -070024static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H);
25
jvanverthfb5df432015-05-21 08:12:27 -070026template <typename T>
kkinnunen15302832015-12-01 04:35:26 -080027void runFPTest(skiatest::Reporter* reporter, GrContext* context,
jvanverthfb5df432015-05-21 08:12:27 -070028 T min, T max, T epsilon, T maxInt, int arraySize, GrPixelConfig config) {
csmartdalton6aa0e112017-02-08 16:14:11 -050029 if (0 != arraySize % 4) {
30 REPORT_FAILURE(reporter, "(0 != arraySize % 4)",
31 SkString("arraySize must be divisible by 4."));
32 return;
33 }
34
jvanverthfb5df432015-05-21 08:12:27 -070035 SkTDArray<T> controlPixelData, readBuffer;
36 controlPixelData.setCount(arraySize);
37 readBuffer.setCount(arraySize);
mtkleincada95a2015-01-22 13:50:35 -080038
jvanverthfb5df432015-05-21 08:12:27 -070039 for (int i = 0; i < arraySize; i += 4) {
40 controlPixelData[i + 0] = min;
41 controlPixelData[i + 1] = max;
42 controlPixelData[i + 2] = epsilon;
43 controlPixelData[i + 3] = maxInt;
joshualittee5da552014-07-16 13:32:56 -070044 }
45
46 for (int origin = 0; origin < 2; ++origin) {
kkinnunen15302832015-12-01 04:35:26 -080047 GrSurfaceDesc desc;
48 desc.fFlags = kRenderTarget_GrSurfaceFlag;
49 desc.fWidth = DEV_W;
50 desc.fHeight = DEV_H;
51 desc.fConfig = config;
Robert Phillipsd46697a2017-01-25 12:10:37 -050052 desc.fOrigin = 0 == origin ? kTopLeft_GrSurfaceOrigin : kBottomLeft_GrSurfaceOrigin;
Hal Canary342b7ac2016-11-04 11:49:42 -040053 sk_sp<GrTexture> fpTexture(context->textureProvider()->createTexture(
bsalomon5ec26ae2016-02-25 08:33:02 -080054 desc, SkBudgeted::kNo, controlPixelData.begin(), 0));
kkinnunen15302832015-12-01 04:35:26 -080055 // Floating point textures are NOT supported everywhere
56 if (nullptr == fpTexture) {
57 continue;
joshualittee5da552014-07-16 13:32:56 -070058 }
csmartdalton6aa0e112017-02-08 16:14:11 -050059 REPORTER_ASSERT(reporter,
60 fpTexture->readPixels(0, 0, DEV_W, DEV_H, desc.fConfig, readBuffer.begin(), 0));
kkinnunen15302832015-12-01 04:35:26 -080061 REPORTER_ASSERT(reporter,
62 0 == memcmp(readBuffer.begin(), controlPixelData.begin(), readBuffer.bytes()));
joshualittee5da552014-07-16 13:32:56 -070063 }
64}
65
csmartdalton6aa0e112017-02-08 16:14:11 -050066static const int RGBA32F_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 4;
jvanverthfb5df432015-05-21 08:12:27 -070067static const float kMaxIntegerRepresentableInSPFloatingPoint = 16777216; // 2 ^ 24
jvanverth28f9c602014-12-05 13:06:35 -080068
bsalomon68d91342016-04-12 09:59:58 -070069DEF_GPUTEST_FOR_RENDERING_CONTEXTS(FloatingPointTextureTest, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070070 runFPTest<float>(reporter, ctxInfo.grContext(), FLT_MIN, FLT_MAX, FLT_EPSILON,
halcanary9d524f22016-03-29 09:03:52 -070071 kMaxIntegerRepresentableInSPFloatingPoint,
csmartdalton6aa0e112017-02-08 16:14:11 -050072 RGBA32F_CONTROL_ARRAY_SIZE, kRGBA_float_GrPixelConfig);
73}
74
75static const int RG32F_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 2;
76
77DEF_GPUTEST_FOR_RENDERING_CONTEXTS(FloatingPointTextureTest_RG, reporter, ctxInfo) {
78 runFPTest<float>(reporter, ctxInfo.grContext(), FLT_MIN, FLT_MAX, FLT_EPSILON,
79 kMaxIntegerRepresentableInSPFloatingPoint,
80 RG32F_CONTROL_ARRAY_SIZE, kRG_float_GrPixelConfig);
jvanverthfb5df432015-05-21 08:12:27 -070081}
mtkleincada95a2015-01-22 13:50:35 -080082
jvanverthfb5df432015-05-21 08:12:27 -070083static const int HALF_ALPHA_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 1 /*alpha-only*/;
84static const SkHalf kMaxIntegerRepresentableInHalfFloatingPoint = 0x6800; // 2 ^ 11
jvanverth1334c212014-12-18 05:44:55 -080085
Brian Osman3a887252016-11-17 13:27:31 -050086DEF_GPUTEST_FOR_RENDERING_CONTEXTS(HalfFloatAlphaTextureTest, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070087 runFPTest<SkHalf>(reporter, ctxInfo.grContext(), SK_HalfMin, SK_HalfMax, SK_HalfEpsilon,
jvanverthfb5df432015-05-21 08:12:27 -070088 kMaxIntegerRepresentableInHalfFloatingPoint,
89 HALF_ALPHA_CONTROL_ARRAY_SIZE, kAlpha_half_GrPixelConfig);
90}
jvanverth1334c212014-12-18 05:44:55 -080091
jvanverthfb5df432015-05-21 08:12:27 -070092static const int HALF_RGBA_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 4 /*RGBA*/;
jvanverth1334c212014-12-18 05:44:55 -080093
Brian Osman3a887252016-11-17 13:27:31 -050094DEF_GPUTEST_FOR_RENDERING_CONTEXTS(HalfFloatRGBATextureTest, reporter, ctxInfo) {
bsalomon8b7451a2016-05-11 06:33:06 -070095 runFPTest<SkHalf>(reporter, ctxInfo.grContext(), SK_HalfMin, SK_HalfMax, SK_HalfEpsilon,
jvanverthfb5df432015-05-21 08:12:27 -070096 kMaxIntegerRepresentableInHalfFloatingPoint,
97 HALF_RGBA_CONTROL_ARRAY_SIZE, kRGBA_half_GrPixelConfig);
jvanverth28f9c602014-12-05 13:06:35 -080098}
99
joshualittee5da552014-07-16 13:32:56 -0700100#endif