• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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  */
14 
15 #include "tests/Test.h"
16 
17 #include "include/gpu/GrContext.h"
18 #include "include/private/SkHalf.h"
19 #include "src/gpu/GrContextPriv.h"
20 #include "src/gpu/GrProxyProvider.h"
21 #include "src/gpu/GrTextureProxy.h"
22 #include "tools/gpu/ProxyUtils.h"
23 
24 #include <float.h>
25 
26 static const int DEV_W = 100, DEV_H = 100;
27 
28 template <typename T>
runFPTest(skiatest::Reporter * reporter,GrContext * context,T min,T max,T epsilon,T maxInt,int arraySize,GrColorType colorType)29 void runFPTest(skiatest::Reporter* reporter, GrContext* context, T min, T max, T epsilon, T maxInt,
30                int arraySize, GrColorType colorType) {
31     if (0 != arraySize % 4) {
32         REPORT_FAILURE(reporter, "(0 != arraySize % 4)",
33                        SkString("arraySize must be divisible by 4."));
34         return;
35     }
36 
37     SkTDArray<T> controlPixelData, readBuffer;
38     controlPixelData.setCount(arraySize);
39     readBuffer.setCount(arraySize);
40 
41     for (int i = 0; i < arraySize; i += 4) {
42         controlPixelData[i + 0] = min;
43         controlPixelData[i + 1] = max;
44         controlPixelData[i + 2] = epsilon;
45         controlPixelData[i + 3] = maxInt;
46     }
47 
48     for (auto origin : {kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin}) {
49         auto fpProxy = sk_gpu_test::MakeTextureProxyFromData(context, GrRenderable::kYes, DEV_W,
50                                                              DEV_H, colorType, kPremul_SkAlphaType,
51                                                              origin, controlPixelData.begin(), 0);
52         // Floating point textures are NOT supported everywhere
53         if (!fpProxy) {
54             continue;
55         }
56 
57         sk_sp<GrSurfaceContext> sContext = context->priv().makeWrappedSurfaceContext(
58                 std::move(fpProxy), colorType, kPremul_SkAlphaType);
59         REPORTER_ASSERT(reporter, sContext);
60 
61         bool result = sContext->readPixels({colorType, kPremul_SkAlphaType, nullptr, DEV_W, DEV_H},
62                                            readBuffer.begin(), 0, {0, 0}, context);
63         REPORTER_ASSERT(reporter, result);
64         REPORTER_ASSERT(reporter,
65                         0 == memcmp(readBuffer.begin(), controlPixelData.begin(), readBuffer.bytes()));
66     }
67 }
68 
69 static const int HALF_ALPHA_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 1 /*alpha-only*/;
70 static const SkHalf kMaxIntegerRepresentableInHalfFloatingPoint = 0x6800;  // 2 ^ 11
71 
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(HalfFloatAlphaTextureTest,reporter,ctxInfo)72 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(HalfFloatAlphaTextureTest, reporter, ctxInfo) {
73     runFPTest<SkHalf>(reporter, ctxInfo.grContext(), SK_HalfMin, SK_HalfMax, SK_HalfEpsilon,
74                       kMaxIntegerRepresentableInHalfFloatingPoint, HALF_ALPHA_CONTROL_ARRAY_SIZE,
75                       GrColorType::kAlpha_F16);
76 }
77 
78 static const int HALF_RGBA_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 4 /*RGBA*/;
79 
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(HalfFloatRGBATextureTest,reporter,ctxInfo)80 DEF_GPUTEST_FOR_RENDERING_CONTEXTS(HalfFloatRGBATextureTest, reporter, ctxInfo) {
81     runFPTest<SkHalf>(reporter, ctxInfo.grContext(), SK_HalfMin, SK_HalfMax, SK_HalfEpsilon,
82                       kMaxIntegerRepresentableInHalfFloatingPoint, HALF_RGBA_CONTROL_ARRAY_SIZE,
83                       GrColorType::kRGBA_F16);
84 }
85