2014-07-16 20:32:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a straightforward test of floating point textures, which are
|
|
|
|
* supported on some platforms. As of right now, this test only supports
|
|
|
|
* 32 bit floating point textures, and indeed floating point test values
|
|
|
|
* have been selected to require 32 bits of precision and full IEEE conformance
|
|
|
|
*/
|
2015-04-30 21:18:54 +00:00
|
|
|
|
2014-07-16 20:32:56 +00:00
|
|
|
#include <float.h>
|
|
|
|
#include "Test.h"
|
2015-04-30 21:18:54 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2014-07-16 20:32:56 +00:00
|
|
|
#include "GrContext.h"
|
|
|
|
#include "GrTexture.h"
|
|
|
|
#include "GrContextFactory.h"
|
2014-12-05 21:06:35 +00:00
|
|
|
|
2014-07-16 20:32:56 +00:00
|
|
|
#include "SkGpuDevice.h"
|
2014-12-05 21:06:35 +00:00
|
|
|
#include "SkHalf.h"
|
2014-07-16 20:32:56 +00:00
|
|
|
|
|
|
|
static const int DEV_W = 100, DEV_H = 100;
|
|
|
|
static const SkIRect DEV_RECT = SkIRect::MakeWH(DEV_W, DEV_H);
|
|
|
|
|
2015-05-21 15:12:27 +00:00
|
|
|
template <typename T>
|
|
|
|
void runFPTest(skiatest::Reporter* reporter, GrContextFactory* factory,
|
|
|
|
T min, T max, T epsilon, T maxInt, int arraySize, GrPixelConfig config) {
|
|
|
|
SkTDArray<T> controlPixelData, readBuffer;
|
|
|
|
controlPixelData.setCount(arraySize);
|
|
|
|
readBuffer.setCount(arraySize);
|
|
|
|
|
|
|
|
for (int i = 0; i < arraySize; i += 4) {
|
|
|
|
controlPixelData[i + 0] = min;
|
|
|
|
controlPixelData[i + 1] = max;
|
|
|
|
controlPixelData[i + 2] = epsilon;
|
|
|
|
controlPixelData[i + 3] = maxInt;
|
2014-07-16 20:32:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int origin = 0; origin < 2; ++origin) {
|
2015-01-23 13:47:55 +00:00
|
|
|
for (int glCtxType = 0; glCtxType < GrContextFactory::kGLContextTypeCnt; ++glCtxType) {
|
2014-10-28 21:33:06 +00:00
|
|
|
GrSurfaceDesc desc;
|
2015-07-16 17:00:28 +00:00
|
|
|
desc.fFlags = kRenderTarget_GrSurfaceFlag;
|
2015-05-21 15:12:27 +00:00
|
|
|
desc.fWidth = DEV_W;
|
2014-07-16 20:32:56 +00:00
|
|
|
desc.fHeight = DEV_H;
|
2015-05-21 15:12:27 +00:00
|
|
|
desc.fConfig = config;
|
2014-07-16 20:32:56 +00:00
|
|
|
desc.fOrigin = 0 == origin ?
|
2015-05-21 15:12:27 +00:00
|
|
|
kTopLeft_GrSurfaceOrigin : kBottomLeft_GrSurfaceOrigin;
|
2014-07-16 20:32:56 +00:00
|
|
|
|
|
|
|
GrContextFactory::GLContextType type =
|
2015-01-23 13:47:55 +00:00
|
|
|
static_cast<GrContextFactory::GLContextType>(glCtxType);
|
2014-07-16 20:32:56 +00:00
|
|
|
if (!GrContextFactory::IsRenderingGLContext(type)) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-01-23 13:47:55 +00:00
|
|
|
GrContext* context = factory->get(type);
|
2015-05-21 15:12:27 +00:00
|
|
|
if (NULL == context) {
|
2014-07-16 20:32:56 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-04-30 21:18:54 +00:00
|
|
|
SkAutoTUnref<GrTexture> fpTexture(context->textureProvider()->createTexture(
|
|
|
|
desc, false, controlPixelData.begin(), 0));
|
2014-07-16 20:32:56 +00:00
|
|
|
// Floating point textures are NOT supported everywhere
|
|
|
|
if (NULL == fpTexture) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-01-22 21:50:35 +00:00
|
|
|
fpTexture->readPixels(0, 0, DEV_W, DEV_H, desc.fConfig, readBuffer.begin(), 0);
|
2015-01-23 13:47:55 +00:00
|
|
|
REPORTER_ASSERT(reporter,
|
2015-05-21 15:12:27 +00:00
|
|
|
0 == memcmp(readBuffer.begin(), controlPixelData.begin(), readBuffer.bytes()));
|
2014-07-16 20:32:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-21 15:12:27 +00:00
|
|
|
static const int FP_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 4/*RGBA*/;
|
|
|
|
static const float kMaxIntegerRepresentableInSPFloatingPoint = 16777216; // 2 ^ 24
|
2014-12-05 21:06:35 +00:00
|
|
|
|
2015-05-21 15:12:27 +00:00
|
|
|
DEF_GPUTEST(FloatingPointTextureTest, reporter, factory) {
|
|
|
|
runFPTest<float>(reporter, factory, FLT_MIN, FLT_MAX, FLT_EPSILON,
|
|
|
|
kMaxIntegerRepresentableInSPFloatingPoint,
|
|
|
|
FP_CONTROL_ARRAY_SIZE, kRGBA_float_GrPixelConfig);
|
|
|
|
}
|
2015-01-22 21:50:35 +00:00
|
|
|
|
2015-05-21 15:12:27 +00:00
|
|
|
static const int HALF_ALPHA_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 1 /*alpha-only*/;
|
|
|
|
static const SkHalf kMaxIntegerRepresentableInHalfFloatingPoint = 0x6800; // 2 ^ 11
|
2014-12-18 13:44:55 +00:00
|
|
|
|
2015-05-21 15:12:27 +00:00
|
|
|
DEF_GPUTEST(HalfFloatAlphaTextureTest, reporter, factory) {
|
|
|
|
runFPTest<SkHalf>(reporter, factory, SK_HalfMin, SK_HalfMax, SK_HalfEpsilon,
|
|
|
|
kMaxIntegerRepresentableInHalfFloatingPoint,
|
|
|
|
HALF_ALPHA_CONTROL_ARRAY_SIZE, kAlpha_half_GrPixelConfig);
|
|
|
|
}
|
2014-12-18 13:44:55 +00:00
|
|
|
|
2015-05-21 15:12:27 +00:00
|
|
|
static const int HALF_RGBA_CONTROL_ARRAY_SIZE = DEV_W * DEV_H * 4 /*RGBA*/;
|
2014-12-18 13:44:55 +00:00
|
|
|
|
2015-05-21 15:12:27 +00:00
|
|
|
DEF_GPUTEST(HalfFloatRGBATextureTest, reporter, factory) {
|
|
|
|
runFPTest<SkHalf>(reporter, factory, SK_HalfMin, SK_HalfMax, SK_HalfEpsilon,
|
|
|
|
kMaxIntegerRepresentableInHalfFloatingPoint,
|
|
|
|
HALF_RGBA_CONTROL_ARRAY_SIZE, kRGBA_half_GrPixelConfig);
|
2014-12-05 21:06:35 +00:00
|
|
|
}
|
|
|
|
|
2014-07-16 20:32:56 +00:00
|
|
|
#endif
|