2019-05-16 16:43:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2019 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-05-20 15:55:11 +00:00
|
|
|
#include "include/core/SkSurface.h"
|
2019-07-02 21:58:27 +00:00
|
|
|
#include "include/core/SkSurfaceCharacterization.h"
|
2019-06-06 16:44:05 +00:00
|
|
|
#include "include/gpu/GrContext.h"
|
2019-05-23 13:38:27 +00:00
|
|
|
#include "src/core/SkAutoPixmapStorage.h"
|
2019-06-06 16:44:05 +00:00
|
|
|
#include "src/gpu/GrContextPriv.h"
|
2019-05-17 18:19:44 +00:00
|
|
|
#include "src/image/SkImage_Base.h"
|
2019-05-16 16:43:11 +00:00
|
|
|
#include "tests/Test.h"
|
|
|
|
|
2019-06-03 16:59:40 +00:00
|
|
|
#ifdef SK_GL
|
|
|
|
#include "src/gpu/gl/GrGLGpu.h"
|
|
|
|
#include "src/gpu/gl/GrGLUtil.h"
|
|
|
|
#endif
|
|
|
|
|
2019-05-16 16:43:11 +00:00
|
|
|
// Test wrapping of GrBackendObjects in SkSurfaces and SkImages
|
|
|
|
void test_wrapping(GrContext* context, skiatest::Reporter* reporter,
|
2019-05-21 21:24:31 +00:00
|
|
|
std::function<GrBackendTexture (GrContext*,
|
|
|
|
GrMipMapped,
|
|
|
|
GrRenderable)> create,
|
2019-07-26 15:13:19 +00:00
|
|
|
GrColorType grColorType, GrMipMapped mipMapped, GrRenderable renderable) {
|
2019-05-16 16:43:11 +00:00
|
|
|
GrResourceCache* cache = context->priv().getResourceCache();
|
|
|
|
|
|
|
|
const int initialCount = cache->getResourceCount();
|
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
GrBackendTexture backendTex = create(context, mipMapped, renderable);
|
|
|
|
if (!backendTex.isValid()) {
|
2019-07-26 15:13:19 +00:00
|
|
|
ERRORF(reporter, "Couldn't create backendTexture for grColorType %d renderable %s\n",
|
|
|
|
grColorType,
|
2019-05-16 16:43:11 +00:00
|
|
|
GrRenderable::kYes == renderable ? "yes" : "no");
|
|
|
|
return;
|
|
|
|
}
|
2019-05-21 21:24:31 +00:00
|
|
|
|
2019-05-16 16:43:11 +00:00
|
|
|
// Skia proper should know nothing about the new backend object
|
|
|
|
REPORTER_ASSERT(reporter, initialCount == cache->getResourceCount());
|
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
SkColorType skColorType = GrColorTypeToSkColorType(grColorType);
|
|
|
|
|
|
|
|
// Wrapping a backendTexture in an image requires an SkColorType
|
|
|
|
if (kUnknown_SkColorType == skColorType) {
|
2019-05-21 21:24:31 +00:00
|
|
|
context->deleteBackendTexture(backendTex);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-04 19:05:35 +00:00
|
|
|
if (GrRenderable::kYes == renderable && context->colorTypeSupportedAsSurface(skColorType)) {
|
2019-05-21 21:24:31 +00:00
|
|
|
sk_sp<SkSurface> surf = SkSurface::MakeFromBackendTexture(context,
|
2019-05-23 13:38:27 +00:00
|
|
|
backendTex,
|
|
|
|
kTopLeft_GrSurfaceOrigin,
|
|
|
|
0,
|
2019-07-26 15:13:19 +00:00
|
|
|
skColorType,
|
2019-05-23 13:38:27 +00:00
|
|
|
nullptr, nullptr);
|
2019-05-21 21:24:31 +00:00
|
|
|
if (!surf) {
|
|
|
|
ERRORF(reporter, "Couldn't make surface from backendTexture for colorType %d\n",
|
2019-07-26 15:13:19 +00:00
|
|
|
skColorType);
|
2019-05-21 21:24:31 +00:00
|
|
|
} else {
|
|
|
|
REPORTER_ASSERT(reporter, initialCount+1 == cache->getResourceCount());
|
2019-05-16 16:43:11 +00:00
|
|
|
}
|
2019-05-21 21:24:31 +00:00
|
|
|
}
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-05-21 21:24:31 +00:00
|
|
|
{
|
|
|
|
sk_sp<SkImage> img = SkImage::MakeFromTexture(context,
|
2019-05-23 13:38:27 +00:00
|
|
|
backendTex,
|
|
|
|
kTopLeft_GrSurfaceOrigin,
|
2019-07-26 15:13:19 +00:00
|
|
|
skColorType,
|
2019-05-23 13:38:27 +00:00
|
|
|
kPremul_SkAlphaType,
|
|
|
|
nullptr);
|
2019-05-21 21:24:31 +00:00
|
|
|
if (!img) {
|
2019-07-26 15:13:19 +00:00
|
|
|
ERRORF(reporter, "Couldn't make image from backendTexture for skColorType %d\n",
|
|
|
|
skColorType);
|
2019-05-21 21:24:31 +00:00
|
|
|
} else {
|
|
|
|
SkImage_Base* ib = as_IB(img);
|
|
|
|
|
|
|
|
GrTextureProxy* proxy = ib->peekProxy();
|
|
|
|
REPORTER_ASSERT(reporter, proxy);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, mipMapped == proxy->proxyMipMapped());
|
|
|
|
REPORTER_ASSERT(reporter, proxy->isInstantiated());
|
|
|
|
REPORTER_ASSERT(reporter, mipMapped == proxy->mipMapped());
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, initialCount+1 == cache->getResourceCount());
|
2019-05-16 16:43:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, initialCount == cache->getResourceCount());
|
|
|
|
|
2019-05-20 12:38:07 +00:00
|
|
|
context->deleteBackendTexture(backendTex);
|
2019-05-16 16:43:11 +00:00
|
|
|
}
|
|
|
|
|
2019-06-03 16:59:40 +00:00
|
|
|
static bool colors_eq(SkColor colA, SkColor colB, int tol) {
|
|
|
|
int maxDiff = 0;
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
int diff = SkTAbs<int>((0xFF & (colA >> i*8)) - (0xFF & (colB >> i*8)));
|
|
|
|
if (maxDiff < diff) {
|
|
|
|
maxDiff = diff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return maxDiff <= tol;
|
|
|
|
}
|
|
|
|
|
2019-05-23 13:38:27 +00:00
|
|
|
static void compare_pixmaps(const SkPixmap& expected, const SkPixmap& actual,
|
|
|
|
SkColorType colorType, skiatest::Reporter* reporter) {
|
|
|
|
SkASSERT(expected.info() == actual.info());
|
|
|
|
for (int y = 0; y < expected.height(); ++y) {
|
|
|
|
for (int x = 0; x < expected.width(); ++x) {
|
|
|
|
|
|
|
|
SkColor expectedCol = expected.getColor(x, y);
|
|
|
|
SkColor actualCol = actual.getColor(x, y);
|
|
|
|
|
|
|
|
// GPU and raster differ a bit on kGray_8_SkColorType and kRGBA_1010102_SkColorType
|
2019-06-03 16:59:40 +00:00
|
|
|
if (colors_eq(actualCol, expectedCol, 12)) {
|
2019-05-23 13:38:27 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ERRORF(reporter,
|
2019-06-03 16:59:40 +00:00
|
|
|
"Mismatched pixels at %d %d ct: %d expected: 0x%x actual: 0x%x\n",
|
|
|
|
x, y, colorType, expectedCol, actualCol);
|
2019-05-23 13:38:27 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test initialization of GrBackendObjects to a specific color
|
|
|
|
void test_color_init(GrContext* context, skiatest::Reporter* reporter,
|
|
|
|
std::function<GrBackendTexture (GrContext*,
|
|
|
|
const SkColor4f&,
|
|
|
|
GrMipMapped,
|
|
|
|
GrRenderable)> create,
|
2019-07-26 15:13:19 +00:00
|
|
|
GrColorType grColorType, const SkColor4f& color,
|
2019-05-23 13:38:27 +00:00
|
|
|
GrMipMapped mipMapped, GrRenderable renderable) {
|
|
|
|
GrBackendTexture backendTex = create(context, color, mipMapped, renderable);
|
|
|
|
if (!backendTex.isValid()) {
|
|
|
|
// errors here should be reported by the test_wrapping test
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
SkColorType skColorType = GrColorTypeToSkColorType(grColorType);
|
|
|
|
|
|
|
|
// Can't wrap backend textures in images and surfaces w/o an SkColorType
|
|
|
|
if (kUnknown_SkColorType == skColorType) {
|
2019-05-23 13:38:27 +00:00
|
|
|
// TODO: burrow in and scrappily check that data was uploaded!
|
|
|
|
context->deleteBackendTexture(backendTex);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
SkAlphaType at = SkColorTypeIsAlwaysOpaque(skColorType) ? kOpaque_SkAlphaType
|
|
|
|
: kPremul_SkAlphaType;
|
2019-05-31 16:48:49 +00:00
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
SkImageInfo ii = SkImageInfo::Make(32, 32, skColorType, at);
|
2019-05-23 13:38:27 +00:00
|
|
|
|
2019-06-03 16:59:40 +00:00
|
|
|
SkColor4f rasterColor = color;
|
2019-07-26 15:13:19 +00:00
|
|
|
if (kGray_8_SkColorType == skColorType) {
|
2019-06-03 16:59:40 +00:00
|
|
|
// For the GPU backends, gray implies a single channel which is opaque.
|
|
|
|
rasterColor.fR = color.fA;
|
|
|
|
rasterColor.fG = color.fA;
|
|
|
|
rasterColor.fB = color.fA;
|
|
|
|
rasterColor.fA = 1.0f;
|
2019-07-26 15:13:19 +00:00
|
|
|
} else if (kAlpha_8_SkColorType == skColorType) {
|
2019-06-03 16:59:40 +00:00
|
|
|
// For the GPU backends, alpha implies a single alpha channel.
|
|
|
|
rasterColor.fR = 0;
|
|
|
|
rasterColor.fG = 0;
|
|
|
|
rasterColor.fB = 0;
|
|
|
|
rasterColor.fA = color.fA;
|
2019-05-31 16:48:49 +00:00
|
|
|
}
|
2019-05-23 13:38:27 +00:00
|
|
|
|
2019-06-03 16:59:40 +00:00
|
|
|
SkAutoPixmapStorage expected;
|
|
|
|
SkAssertResult(expected.tryAlloc(ii));
|
|
|
|
expected.erase(rasterColor);
|
|
|
|
|
2019-05-23 13:38:27 +00:00
|
|
|
SkAutoPixmapStorage actual;
|
|
|
|
SkAssertResult(actual.tryAlloc(ii));
|
|
|
|
actual.erase(SkColors::kTransparent);
|
|
|
|
|
2019-09-04 19:05:35 +00:00
|
|
|
if (GrRenderable::kYes == renderable && context->colorTypeSupportedAsSurface(skColorType)) {
|
2019-05-23 13:38:27 +00:00
|
|
|
sk_sp<SkSurface> surf = SkSurface::MakeFromBackendTexture(context,
|
|
|
|
backendTex,
|
|
|
|
kTopLeft_GrSurfaceOrigin,
|
|
|
|
0,
|
2019-07-26 15:13:19 +00:00
|
|
|
skColorType,
|
2019-05-23 13:38:27 +00:00
|
|
|
nullptr, nullptr);
|
|
|
|
if (surf) {
|
|
|
|
bool result = surf->readPixels(actual, 0, 0);
|
|
|
|
REPORTER_ASSERT(reporter, result);
|
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
compare_pixmaps(expected, actual, skColorType, reporter);
|
2019-05-23 13:38:27 +00:00
|
|
|
|
|
|
|
actual.erase(SkColors::kTransparent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
sk_sp<SkImage> img = SkImage::MakeFromTexture(context,
|
|
|
|
backendTex,
|
|
|
|
kTopLeft_GrSurfaceOrigin,
|
2019-07-26 15:13:19 +00:00
|
|
|
skColorType,
|
2019-05-31 16:48:49 +00:00
|
|
|
at,
|
2019-05-23 13:38:27 +00:00
|
|
|
nullptr);
|
|
|
|
if (img) {
|
2019-06-03 16:59:40 +00:00
|
|
|
// If possible, read back the pixels and check that they're correct
|
|
|
|
{
|
|
|
|
bool result = img->readPixels(actual, 0, 0);
|
|
|
|
if (!result) {
|
|
|
|
// TODO: we need a better way to tell a priori if readPixels will work for an
|
|
|
|
// arbitrary colorType
|
2019-05-23 13:38:27 +00:00
|
|
|
#if 0
|
2019-06-03 16:59:40 +00:00
|
|
|
ERRORF(reporter, "Couldn't readback from SkImage for colorType: %d\n",
|
|
|
|
colorType);
|
|
|
|
#endif
|
|
|
|
} else {
|
2019-07-26 15:13:19 +00:00
|
|
|
compare_pixmaps(expected, actual, skColorType, reporter);
|
2019-06-03 16:59:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw the wrapped image into an RGBA surface attempting to access all the
|
|
|
|
// mipMap levels.
|
|
|
|
{
|
|
|
|
#ifdef SK_GL
|
|
|
|
// skbug.com/9141 (RGBA_F32 mipmaps appear to be broken on some Mali devices)
|
|
|
|
if (GrBackendApi::kOpenGL == context->backend()) {
|
|
|
|
GrGLGpu* glGPU = static_cast<GrGLGpu*>(context->priv().getGpu());
|
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
if (kRGBA_F32_SkColorType == skColorType && GrMipMapped::kYes == mipMapped &&
|
2019-06-03 19:12:50 +00:00
|
|
|
kGLES_GrGLStandard == glGPU->ctxInfo().standard()) {
|
2019-06-03 16:59:40 +00:00
|
|
|
context->deleteBackendTexture(backendTex);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2019-05-23 13:38:27 +00:00
|
|
|
#endif
|
2019-06-03 16:59:40 +00:00
|
|
|
|
|
|
|
SkImageInfo newII = SkImageInfo::Make(32, 32, kRGBA_8888_SkColorType,
|
|
|
|
kPremul_SkAlphaType);
|
|
|
|
|
|
|
|
SkAutoPixmapStorage actual2;
|
|
|
|
SkAssertResult(actual2.tryAlloc(newII));
|
|
|
|
actual2.erase(SkColors::kTransparent);
|
|
|
|
|
|
|
|
sk_sp<SkSurface> surf = SkSurface::MakeRenderTarget(context,
|
|
|
|
SkBudgeted::kNo,
|
|
|
|
newII, 1,
|
|
|
|
kTopLeft_GrSurfaceOrigin,
|
|
|
|
nullptr);
|
|
|
|
if (!surf) {
|
|
|
|
context->deleteBackendTexture(backendTex);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkCanvas* canvas = surf->getCanvas();
|
|
|
|
|
|
|
|
SkPaint p;
|
|
|
|
p.setFilterQuality(kHigh_SkFilterQuality);
|
|
|
|
|
|
|
|
int numMipLevels = (GrMipMapped::kYes == mipMapped) ? 6 : 1;
|
|
|
|
|
|
|
|
for (int i = 0, rectSize = 32; i < numMipLevels; ++i, rectSize /= 2) {
|
|
|
|
SkASSERT(rectSize >= 1);
|
|
|
|
|
|
|
|
SkRect r = SkRect::MakeWH(rectSize, rectSize);
|
|
|
|
canvas->clear(SK_ColorTRANSPARENT);
|
|
|
|
canvas->drawImageRect(img, r, &p);
|
|
|
|
|
|
|
|
bool result = surf->readPixels(actual2, 0, 0);
|
|
|
|
REPORTER_ASSERT(reporter, result);
|
|
|
|
|
|
|
|
SkColor actualColor = actual2.getColor(0, 0);
|
|
|
|
|
|
|
|
if (!colors_eq(actualColor, rasterColor.toSkColor(), 1)) {
|
|
|
|
ERRORF(reporter, "Pixel mismatch colorType %d: level: %d e: 0x%x a: 0x%x\n",
|
2019-07-26 15:13:19 +00:00
|
|
|
skColorType, i, rasterColor.toSkColor(), actualColor);
|
2019-06-03 16:59:40 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-23 13:38:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
context->deleteBackendTexture(backendTex);
|
|
|
|
}
|
|
|
|
|
2019-07-02 21:58:27 +00:00
|
|
|
enum class VkLayout {
|
|
|
|
kUndefined,
|
|
|
|
kReadOnlyOptimal,
|
|
|
|
kColorAttachmentOptimal
|
|
|
|
};
|
|
|
|
|
|
|
|
void check_vk_layout(const GrBackendTexture& backendTex, VkLayout layout) {
|
|
|
|
#if defined(SK_VULKAN) && defined(SK_DEBUG)
|
|
|
|
VkImageLayout expected;
|
|
|
|
|
|
|
|
switch (layout) {
|
|
|
|
case VkLayout::kUndefined:
|
|
|
|
expected = VK_IMAGE_LAYOUT_UNDEFINED;
|
|
|
|
break;
|
|
|
|
case VkLayout::kReadOnlyOptimal:
|
|
|
|
expected = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL;
|
|
|
|
break;
|
|
|
|
case VkLayout::kColorAttachmentOptimal:
|
|
|
|
expected = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SkUNREACHABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GrVkImageInfo vkII;
|
|
|
|
|
|
|
|
if (backendTex.getVkImageInfo(&vkII)) {
|
|
|
|
SkASSERT(expected == vkII.fImageLayout);
|
|
|
|
SkASSERT(VK_IMAGE_TILING_OPTIMAL == vkII.fImageTiling);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// This test is a bit different from the others in this file. It is mainly checking that, for any
|
|
|
|
// SkSurface we can create in Ganesh, we can also create a backend texture that is compatible with
|
|
|
|
// its characterization and then create a new surface that wraps that backend texture.
|
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(CharacterizationBackendAllocationTest, reporter, ctxInfo) {
|
|
|
|
GrContext* context = ctxInfo.grContext();
|
|
|
|
|
|
|
|
for (int ct = 0; ct <= kLastEnum_SkColorType; ++ct) {
|
|
|
|
SkColorType colorType = static_cast<SkColorType>(ct);
|
|
|
|
|
|
|
|
SkImageInfo ii = SkImageInfo::Make(32, 32, colorType, kPremul_SkAlphaType);
|
|
|
|
|
|
|
|
for (auto origin : { kTopLeft_GrSurfaceOrigin, kBottomLeft_GrSurfaceOrigin } ) {
|
|
|
|
for (bool mipMaps : { true, false } ) {
|
|
|
|
for (int sampleCount : {1, 2}) {
|
|
|
|
SkSurfaceCharacterization c;
|
|
|
|
|
|
|
|
// Get a characterization, if possible
|
|
|
|
{
|
|
|
|
sk_sp<SkSurface> s = SkSurface::MakeRenderTarget(context, SkBudgeted::kNo,
|
|
|
|
ii, sampleCount,
|
|
|
|
origin, nullptr, mipMaps);
|
|
|
|
if (!s) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!s->characterize(&c)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, s->isCompatible(c));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test out uninitialized path
|
|
|
|
{
|
|
|
|
GrBackendTexture backendTex = context->createBackendTexture(c);
|
|
|
|
check_vk_layout(backendTex, VkLayout::kUndefined);
|
|
|
|
REPORTER_ASSERT(reporter, backendTex.isValid());
|
|
|
|
REPORTER_ASSERT(reporter, c.isCompatible(backendTex));
|
|
|
|
|
2019-07-29 18:11:35 +00:00
|
|
|
{
|
|
|
|
GrBackendFormat format = context->defaultBackendFormat(
|
|
|
|
c.imageInfo().colorType(),
|
|
|
|
GrRenderable::kYes);
|
|
|
|
REPORTER_ASSERT(reporter, format == backendTex.getBackendFormat());
|
|
|
|
}
|
|
|
|
|
2019-07-02 21:58:27 +00:00
|
|
|
sk_sp<SkSurface> s2 = SkSurface::MakeFromBackendTexture(context, c,
|
|
|
|
backendTex);
|
|
|
|
REPORTER_ASSERT(reporter, s2);
|
|
|
|
REPORTER_ASSERT(reporter, s2->isCompatible(c));
|
|
|
|
|
|
|
|
s2 = nullptr;
|
|
|
|
context->deleteBackendTexture(backendTex);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test out color-initialized path
|
|
|
|
{
|
|
|
|
GrBackendTexture backendTex = context->createBackendTexture(c,
|
|
|
|
SkColors::kRed);
|
|
|
|
check_vk_layout(backendTex, VkLayout::kColorAttachmentOptimal);
|
|
|
|
REPORTER_ASSERT(reporter, backendTex.isValid());
|
|
|
|
REPORTER_ASSERT(reporter, c.isCompatible(backendTex));
|
|
|
|
|
2019-07-29 18:11:35 +00:00
|
|
|
{
|
|
|
|
GrBackendFormat format = context->defaultBackendFormat(
|
|
|
|
c.imageInfo().colorType(),
|
|
|
|
GrRenderable::kYes);
|
|
|
|
REPORTER_ASSERT(reporter, format == backendTex.getBackendFormat());
|
|
|
|
}
|
|
|
|
|
2019-07-02 21:58:27 +00:00
|
|
|
sk_sp<SkSurface> s2 = SkSurface::MakeFromBackendTexture(context, c,
|
|
|
|
backendTex);
|
|
|
|
REPORTER_ASSERT(reporter, s2);
|
|
|
|
REPORTER_ASSERT(reporter, s2->isCompatible(c));
|
|
|
|
|
|
|
|
s2 = nullptr;
|
|
|
|
context->deleteBackendTexture(backendTex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2019-05-16 16:43:11 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ColorTypeBackendAllocationTest, reporter, ctxInfo) {
|
|
|
|
GrContext* context = ctxInfo.grContext();
|
|
|
|
const GrCaps* caps = context->priv().caps();
|
|
|
|
|
2019-05-23 13:38:27 +00:00
|
|
|
constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f };
|
2019-05-31 16:48:49 +00:00
|
|
|
constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 0.75f };
|
2019-05-23 13:38:27 +00:00
|
|
|
|
2019-05-16 16:43:11 +00:00
|
|
|
struct {
|
|
|
|
SkColorType fColorType;
|
|
|
|
GrPixelConfig fConfig;
|
2019-05-23 13:38:27 +00:00
|
|
|
SkColor4f fColor;
|
2019-05-16 16:43:11 +00:00
|
|
|
} combinations[] = {
|
2019-05-23 13:38:27 +00:00
|
|
|
{ kAlpha_8_SkColorType, kAlpha_8_GrPixelConfig, kTransCol },
|
|
|
|
{ kRGB_565_SkColorType, kRGB_565_GrPixelConfig, SkColors::kRed },
|
|
|
|
{ kARGB_4444_SkColorType, kRGBA_4444_GrPixelConfig, SkColors::kGreen },
|
|
|
|
{ kRGBA_8888_SkColorType, kRGBA_8888_GrPixelConfig, SkColors::kBlue },
|
|
|
|
{ kRGB_888x_SkColorType, kRGB_888_GrPixelConfig, SkColors::kCyan },
|
|
|
|
// TODO: readback is busted when alpha = 0.5f (perhaps premul vs. unpremul)
|
|
|
|
{ kBGRA_8888_SkColorType, kBGRA_8888_GrPixelConfig, { 1, 0, 0, 1.0f } },
|
|
|
|
// TODO: readback is busted when alpha = 0.5f (perhaps premul vs. unpremul)
|
|
|
|
{ kRGBA_1010102_SkColorType, kRGBA_1010102_GrPixelConfig, { 0.5f, 0, 0, 1.0f }},
|
2019-05-21 21:24:31 +00:00
|
|
|
// The kRGB_101010x_SkColorType has no Ganesh correlate
|
2019-05-23 13:38:27 +00:00
|
|
|
{ kRGB_101010x_SkColorType, kUnknown_GrPixelConfig, { 0, 0.5f, 0, 0.5f }},
|
2019-05-31 16:48:49 +00:00
|
|
|
{ kGray_8_SkColorType, kGray_8_GrPixelConfig, kGrayCol },
|
2019-05-23 13:38:27 +00:00
|
|
|
{ kRGBA_F16Norm_SkColorType, kRGBA_half_Clamped_GrPixelConfig, SkColors::kLtGray },
|
|
|
|
{ kRGBA_F16_SkColorType, kRGBA_half_GrPixelConfig, SkColors::kYellow },
|
|
|
|
{ kRGBA_F32_SkColorType, kRGBA_float_GrPixelConfig, SkColors::kGray },
|
2019-09-04 19:05:35 +00:00
|
|
|
{ kRG_88_SkColorType, kRG_88_GrPixelConfig, SkColors::kRed },
|
2019-05-16 16:43:11 +00:00
|
|
|
};
|
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
GR_STATIC_ASSERT(kLastEnum_SkColorType == SK_ARRAY_COUNT(combinations));
|
2019-05-16 16:43:11 +00:00
|
|
|
|
|
|
|
for (auto combo : combinations) {
|
|
|
|
SkColorType colorType = combo.fColorType;
|
|
|
|
|
|
|
|
if (GrBackendApi::kMetal == context->backend()) {
|
|
|
|
// skbug.com/9086 (Metal caps may not be handling RGBA32 correctly)
|
|
|
|
if (kRGBA_F32_SkColorType == combo.fColorType) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
for (auto mipMapped : { GrMipMapped::kNo, GrMipMapped::kYes }) {
|
|
|
|
if (GrMipMapped::kYes == mipMapped && !caps->mipMapSupport()) {
|
|
|
|
continue;
|
2019-05-16 16:43:11 +00:00
|
|
|
}
|
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
for (auto renderable : { GrRenderable::kNo, GrRenderable::kYes }) {
|
2019-08-14 18:23:53 +00:00
|
|
|
if (!caps->getDefaultBackendFormat(SkColorTypeToGrColorType(colorType),
|
|
|
|
renderable).isValid()) {
|
|
|
|
continue;
|
|
|
|
}
|
2019-05-17 18:19:44 +00:00
|
|
|
if (GrRenderable::kYes == renderable) {
|
|
|
|
if (kRGB_888x_SkColorType == combo.fColorType) {
|
|
|
|
// Ganesh can't perform the blends correctly when rendering this format
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-21 21:24:31 +00:00
|
|
|
{
|
|
|
|
auto uninitCreateMtd = [colorType](GrContext* context,
|
|
|
|
GrMipMapped mipMapped,
|
|
|
|
GrRenderable renderable) {
|
2019-07-02 21:58:27 +00:00
|
|
|
auto result = context->createBackendTexture(32, 32, colorType,
|
|
|
|
mipMapped, renderable,
|
|
|
|
GrProtected::kNo);
|
|
|
|
check_vk_layout(result, VkLayout::kUndefined);
|
2019-07-29 18:11:35 +00:00
|
|
|
|
|
|
|
#ifdef SK_DEBUG
|
|
|
|
{
|
|
|
|
GrBackendFormat format = context->defaultBackendFormat(colorType,
|
|
|
|
renderable);
|
|
|
|
SkASSERT(format == result.getBackendFormat());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-07-02 21:58:27 +00:00
|
|
|
return result;
|
2019-05-21 21:24:31 +00:00
|
|
|
};
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-05-21 21:24:31 +00:00
|
|
|
test_wrapping(context, reporter, uninitCreateMtd,
|
2019-07-26 15:13:19 +00:00
|
|
|
SkColorTypeToGrColorType(colorType), mipMapped, renderable);
|
2019-05-21 21:24:31 +00:00
|
|
|
}
|
2019-05-23 13:38:27 +00:00
|
|
|
|
|
|
|
{
|
2019-05-31 16:48:49 +00:00
|
|
|
// GL has difficulties reading back from these combinations. In particular,
|
|
|
|
// reading back kGray_8 is a mess.
|
2019-05-23 13:38:27 +00:00
|
|
|
if (GrBackendApi::kOpenGL == context->backend()) {
|
2019-05-31 16:48:49 +00:00
|
|
|
if (kAlpha_8_SkColorType == combo.fColorType ||
|
|
|
|
kGray_8_SkColorType == combo.fColorType) {
|
2019-05-23 13:38:27 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-05-31 16:48:49 +00:00
|
|
|
} else if (GrBackendApi::kMetal == context->backend()) {
|
|
|
|
// Not yet implemented for Metal
|
2019-05-23 13:38:27 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto createWithColorMtd = [colorType](GrContext* context,
|
|
|
|
const SkColor4f& color,
|
|
|
|
GrMipMapped mipMapped,
|
|
|
|
GrRenderable renderable) {
|
2019-07-02 21:58:27 +00:00
|
|
|
auto result = context->createBackendTexture(32, 32, colorType, color,
|
|
|
|
mipMapped, renderable,
|
|
|
|
GrProtected::kNo);
|
|
|
|
check_vk_layout(result, GrRenderable::kYes == renderable
|
|
|
|
? VkLayout::kColorAttachmentOptimal
|
|
|
|
: VkLayout::kReadOnlyOptimal);
|
2019-07-29 18:11:35 +00:00
|
|
|
|
|
|
|
#ifdef SK_DEBUG
|
|
|
|
{
|
|
|
|
GrBackendFormat format = context->defaultBackendFormat(colorType,
|
|
|
|
renderable);
|
|
|
|
SkASSERT(format == result.getBackendFormat());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-07-02 21:58:27 +00:00
|
|
|
return result;
|
2019-05-23 13:38:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
test_color_init(context, reporter, createWithColorMtd,
|
2019-07-26 15:13:19 +00:00
|
|
|
SkColorTypeToGrColorType(colorType),
|
|
|
|
combo.fColor, mipMapped, renderable);
|
2019-05-23 13:38:27 +00:00
|
|
|
}
|
2019-05-17 18:19:44 +00:00
|
|
|
}
|
2019-05-16 16:43:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef SK_GL
|
|
|
|
|
|
|
|
#include "src/gpu/gl/GrGLCaps.h"
|
2019-05-16 16:43:11 +00:00
|
|
|
#include "src/gpu/gl/GrGLDefines.h"
|
2019-07-26 15:13:19 +00:00
|
|
|
#include "src/gpu/gl/GrGLUtil.h"
|
2019-05-16 16:43:11 +00:00
|
|
|
|
|
|
|
DEF_GPUTEST_FOR_ALL_GL_CONTEXTS(GLBackendAllocationTest, reporter, ctxInfo) {
|
|
|
|
sk_gpu_test::GLTestContext* glCtx = ctxInfo.glContext();
|
|
|
|
GrGLStandard standard = glCtx->gl()->fStandard;
|
|
|
|
GrContext* context = ctxInfo.grContext();
|
2019-05-17 18:19:44 +00:00
|
|
|
const GrGLCaps* glCaps = static_cast<const GrGLCaps*>(context->priv().caps());
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-05-23 13:38:27 +00:00
|
|
|
constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f };
|
2019-05-31 16:48:49 +00:00
|
|
|
constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 0.75f };
|
2019-05-23 13:38:27 +00:00
|
|
|
|
2019-05-16 16:43:11 +00:00
|
|
|
struct {
|
2019-07-26 15:13:19 +00:00
|
|
|
GrColorType fColorType;
|
2019-05-16 16:43:11 +00:00
|
|
|
GrGLenum fFormat;
|
2019-05-23 13:38:27 +00:00
|
|
|
SkColor4f fColor;
|
2019-05-16 16:43:11 +00:00
|
|
|
} combinations[] = {
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kRGBA_8888, GR_GL_RGBA8, SkColors::kRed },
|
|
|
|
{ GrColorType::kRGBA_8888_SRGB, GR_GL_SRGB8_ALPHA8, SkColors::kRed },
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kRGB_888x, GR_GL_RGBA8, SkColors::kYellow },
|
|
|
|
{ GrColorType::kRGB_888x, GR_GL_RGB8, SkColors::kCyan },
|
|
|
|
|
|
|
|
{ GrColorType::kBGRA_8888, GR_GL_RGBA8, SkColors::kBlue },
|
|
|
|
{ GrColorType::kBGRA_8888, GR_GL_BGRA8, SkColors::kBlue },
|
|
|
|
// TODO: readback is busted when alpha = 0.5f (perhaps premul vs. unpremul)
|
|
|
|
{ GrColorType::kRGBA_1010102, GR_GL_RGB10_A2, { 0.5f, 0, 0, 1.0f } },
|
|
|
|
{ GrColorType::kBGR_565, GR_GL_RGB565, SkColors::kRed },
|
|
|
|
{ GrColorType::kABGR_4444, GR_GL_RGBA4, SkColors::kGreen },
|
|
|
|
|
|
|
|
{ GrColorType::kAlpha_8, GR_GL_ALPHA8, kTransCol },
|
|
|
|
{ GrColorType::kAlpha_8, GR_GL_R8, kTransCol },
|
|
|
|
|
|
|
|
{ GrColorType::kGray_8, GR_GL_LUMINANCE8, kGrayCol },
|
|
|
|
{ GrColorType::kGray_8, GR_GL_R8, kGrayCol },
|
|
|
|
|
|
|
|
{ GrColorType::kRGBA_F32, GR_GL_RGBA32F, SkColors::kRed },
|
|
|
|
|
|
|
|
{ GrColorType::kRGBA_F16_Clamped, GR_GL_RGBA16F, SkColors::kLtGray },
|
|
|
|
{ GrColorType::kRGBA_F16, GR_GL_RGBA16F, SkColors::kYellow },
|
|
|
|
|
2019-09-04 19:05:35 +00:00
|
|
|
{ GrColorType::kRG_88, GR_GL_RG8, { 1, 0.5f, 0, 1 } },
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kAlpha_F16, GR_GL_R16F, { 1.0f, 0, 0, 0.5f } },
|
|
|
|
{ GrColorType::kAlpha_F16, GR_GL_LUMINANCE16F, kGrayCol },
|
|
|
|
|
|
|
|
{ GrColorType::kR_16, GR_GL_R16, SkColors::kRed },
|
|
|
|
{ GrColorType::kRG_1616, GR_GL_RG16, SkColors::kYellow },
|
2019-06-18 12:00:42 +00:00
|
|
|
|
|
|
|
// Experimental (for Y416 and mutant P016/P010)
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kRGBA_16161616, GR_GL_RGBA16, SkColors::kLtGray },
|
|
|
|
{ GrColorType::kRG_F16, GR_GL_RG16F, SkColors::kYellow },
|
|
|
|
|
|
|
|
{ GrColorType::kUnknown, GR_GL_COMPRESSED_RGB8_ETC2, SkColors::kRed },
|
|
|
|
{ GrColorType::kUnknown, GR_GL_COMPRESSED_ETC1_RGB8, SkColors::kRed },
|
2019-05-16 16:43:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for (auto combo : combinations) {
|
|
|
|
GrBackendFormat format = GrBackendFormat::MakeGL(combo.fFormat, GR_GL_TEXTURE_2D);
|
|
|
|
|
2019-08-14 18:23:53 +00:00
|
|
|
if (!glCaps->isFormatTexturable(format)) {
|
2019-05-16 16:43:11 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
if (GrColorType::kBGRA_8888 == combo.fColorType) {
|
2019-05-16 16:43:11 +00:00
|
|
|
if (GR_GL_RGBA8 == combo.fFormat && kGL_GrGLStandard != standard) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (GR_GL_BGRA8 == combo.fFormat && kGL_GrGLStandard == standard) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
for (auto mipMapped : { GrMipMapped::kNo, GrMipMapped::kYes }) {
|
|
|
|
if (GrMipMapped::kYes == mipMapped && !glCaps->mipMapSupport()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto renderable : { GrRenderable::kNo, GrRenderable::kYes }) {
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
if (GrRenderable::kYes == renderable) {
|
2019-08-06 16:05:31 +00:00
|
|
|
if (!glCaps->isFormatAsColorTypeRenderable(combo.fColorType, format)) {
|
2019-05-17 18:19:44 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-05-16 16:43:11 +00:00
|
|
|
}
|
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
|
|
|
|
// We current disallow uninitialized compressed textures in the GL backend
|
|
|
|
if (GR_GL_COMPRESSED_RGB8_ETC2 != combo.fFormat &&
|
|
|
|
GR_GL_COMPRESSED_ETC1_RGB8 != combo.fFormat) {
|
2019-05-21 21:24:31 +00:00
|
|
|
auto uninitCreateMtd = [format](GrContext* context,
|
|
|
|
GrMipMapped mipMapped,
|
|
|
|
GrRenderable renderable) {
|
|
|
|
return context->createBackendTexture(32, 32, format,
|
2019-06-24 14:53:09 +00:00
|
|
|
mipMapped, renderable,
|
|
|
|
GrProtected::kNo);
|
2019-05-21 21:24:31 +00:00
|
|
|
};
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-05-21 21:24:31 +00:00
|
|
|
test_wrapping(context, reporter, uninitCreateMtd,
|
|
|
|
combo.fColorType, mipMapped, renderable);
|
|
|
|
}
|
2019-05-23 13:38:27 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
// GL has difficulties reading back from these combinations
|
2019-07-26 15:13:19 +00:00
|
|
|
if (GrColorType::kAlpha_8 == combo.fColorType) {
|
2019-05-23 13:38:27 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-05-31 16:48:49 +00:00
|
|
|
if (GrRenderable::kYes != renderable) {
|
2019-05-23 13:38:27 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto createWithColorMtd = [format](GrContext* context,
|
|
|
|
const SkColor4f& color,
|
|
|
|
GrMipMapped mipMapped,
|
|
|
|
GrRenderable renderable) {
|
2019-06-04 15:03:06 +00:00
|
|
|
return context->createBackendTexture(32, 32, format, color,
|
2019-07-01 19:04:06 +00:00
|
|
|
mipMapped, renderable,
|
|
|
|
GrProtected::kNo);
|
2019-05-23 13:38:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
test_color_init(context, reporter, createWithColorMtd,
|
|
|
|
combo.fColorType, combo.fColor, mipMapped, renderable);
|
|
|
|
}
|
2019-05-17 18:19:44 +00:00
|
|
|
}
|
2019-05-16 16:43:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2019-05-16 16:43:11 +00:00
|
|
|
|
|
|
|
#ifdef SK_VULKAN
|
|
|
|
|
|
|
|
#include "src/gpu/vk/GrVkCaps.h"
|
|
|
|
|
|
|
|
DEF_GPUTEST_FOR_VULKAN_CONTEXT(VkBackendAllocationTest, reporter, ctxInfo) {
|
|
|
|
GrContext* context = ctxInfo.grContext();
|
|
|
|
const GrVkCaps* vkCaps = static_cast<const GrVkCaps*>(context->priv().caps());
|
|
|
|
|
2019-05-23 13:38:27 +00:00
|
|
|
constexpr SkColor4f kTransCol { 0, 0.25f, 0.75f, 0.5f };
|
2019-05-31 16:48:49 +00:00
|
|
|
constexpr SkColor4f kGrayCol { 0.75f, 0.75f, 0.75f, 0.75f };
|
2019-05-23 13:38:27 +00:00
|
|
|
|
2019-05-16 16:43:11 +00:00
|
|
|
struct {
|
2019-07-26 15:13:19 +00:00
|
|
|
GrColorType fColorType;
|
2019-05-16 16:43:11 +00:00
|
|
|
VkFormat fFormat;
|
2019-05-23 13:38:27 +00:00
|
|
|
SkColor4f fColor;
|
2019-05-16 16:43:11 +00:00
|
|
|
} combinations[] = {
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kRGBA_8888, VK_FORMAT_R8G8B8A8_UNORM, SkColors::kRed },
|
|
|
|
{ GrColorType::kRGBA_8888_SRGB, VK_FORMAT_R8G8B8A8_SRGB, SkColors::kRed },
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-05-31 16:48:49 +00:00
|
|
|
// In this configuration (i.e., an RGB_888x colortype with an RGBA8 backing format),
|
|
|
|
// there is nothing to tell Skia to make the provided color opaque. Clients will need
|
|
|
|
// to provide an opaque initialization color in this case.
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kRGB_888x, VK_FORMAT_R8G8B8A8_UNORM, SkColors::kYellow },
|
|
|
|
{ GrColorType::kRGB_888x, VK_FORMAT_R8G8B8_UNORM, SkColors::kCyan },
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kBGRA_8888, VK_FORMAT_B8G8R8A8_UNORM, SkColors::kBlue },
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kRGBA_1010102, VK_FORMAT_A2B10G10R10_UNORM_PACK32, { 0.5f, 0, 0, 1.0f }},
|
|
|
|
{ GrColorType::kBGR_565, VK_FORMAT_R5G6B5_UNORM_PACK16, SkColors::kRed },
|
2019-05-17 18:19:44 +00:00
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kABGR_4444, VK_FORMAT_R4G4B4A4_UNORM_PACK16, SkColors::kCyan },
|
|
|
|
{ GrColorType::kABGR_4444, VK_FORMAT_B4G4R4A4_UNORM_PACK16, SkColors::kYellow },
|
2019-05-17 18:19:44 +00:00
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kAlpha_8, VK_FORMAT_R8_UNORM, kTransCol },
|
2019-05-31 16:48:49 +00:00
|
|
|
// In this config (i.e., a Gray8 color type with an R8 backing format), there is nothing
|
|
|
|
// to tell Skia this isn't an Alpha8 color type (so it will initialize the texture with
|
|
|
|
// the alpha channel of the color). Clients should, in general, fill all the channels
|
|
|
|
// of the provided color with the same value in such cases.
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kGray_8, VK_FORMAT_R8_UNORM, kGrayCol },
|
2019-05-31 16:48:49 +00:00
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kRGBA_F32, VK_FORMAT_R32G32B32A32_SFLOAT, SkColors::kRed },
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kRGBA_F16_Clamped, VK_FORMAT_R16G16B16A16_SFLOAT, SkColors::kLtGray },
|
|
|
|
{ GrColorType::kRGBA_F16, VK_FORMAT_R16G16B16A16_SFLOAT, SkColors::kYellow },
|
2019-05-16 16:43:11 +00:00
|
|
|
|
|
|
|
// These backend formats don't have SkColorType equivalents
|
2019-09-04 19:05:35 +00:00
|
|
|
{ GrColorType::kRG_88, VK_FORMAT_R8G8_UNORM, { 1, 0.5f, 0, 1 } },
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kAlpha_F16, VK_FORMAT_R16_SFLOAT, { 1.0f, 0, 0, 0.5f }},
|
|
|
|
|
|
|
|
{ GrColorType::kR_16, VK_FORMAT_R16_UNORM, SkColors::kRed },
|
|
|
|
{ GrColorType::kRG_1616, VK_FORMAT_R16G16_UNORM, SkColors::kYellow },
|
2019-06-18 12:00:42 +00:00
|
|
|
|
|
|
|
// Experimental (for Y416 and mutant P016/P010)
|
2019-07-26 15:13:19 +00:00
|
|
|
{ GrColorType::kRGBA_16161616, VK_FORMAT_R16G16B16A16_UNORM, SkColors::kLtGray },
|
|
|
|
{ GrColorType::kRG_F16, VK_FORMAT_R16G16_SFLOAT, SkColors::kYellow },
|
|
|
|
|
|
|
|
{ GrColorType::kUnknown, VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK, SkColors::kRed },
|
2019-05-16 16:43:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
for (auto combo : combinations) {
|
2019-07-08 18:24:47 +00:00
|
|
|
if (!vkCaps->isVkFormatTexturable(combo.fFormat)) {
|
2019-05-16 16:43:11 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
GrBackendFormat format = GrBackendFormat::MakeVk(combo.fFormat);
|
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
for (auto mipMapped : { GrMipMapped::kNo, GrMipMapped::kYes }) {
|
|
|
|
if (GrMipMapped::kYes == mipMapped && !vkCaps->mipMapSupport()) {
|
|
|
|
continue;
|
|
|
|
}
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-05-17 18:19:44 +00:00
|
|
|
for (auto renderable : { GrRenderable::kNo, GrRenderable::kYes }) {
|
|
|
|
|
|
|
|
if (GrRenderable::kYes == renderable) {
|
2019-08-05 16:58:39 +00:00
|
|
|
// We must also check whether we allow rendering to the format using the
|
|
|
|
// color type.
|
2019-08-06 16:05:31 +00:00
|
|
|
if (!vkCaps->isFormatAsColorTypeRenderable(
|
|
|
|
combo.fColorType, GrBackendFormat::MakeVk(combo.fFormat), 1)) {
|
2019-08-05 16:58:39 +00:00
|
|
|
continue;
|
|
|
|
}
|
2019-05-16 16:43:11 +00:00
|
|
|
}
|
|
|
|
|
2019-07-26 15:13:19 +00:00
|
|
|
// We current disallow uninitialized compressed textures in the Vulkan backend
|
|
|
|
if (combo.fFormat != VK_FORMAT_ETC2_R8G8B8_UNORM_BLOCK) {
|
2019-05-21 21:24:31 +00:00
|
|
|
auto uninitCreateMtd = [format](GrContext* context,
|
2019-05-23 13:38:27 +00:00
|
|
|
GrMipMapped mipMapped,
|
|
|
|
GrRenderable renderable) {
|
2019-06-07 18:21:31 +00:00
|
|
|
GrBackendTexture beTex = context->createBackendTexture(32, 32, format,
|
|
|
|
mipMapped,
|
2019-06-24 14:53:09 +00:00
|
|
|
renderable,
|
|
|
|
GrProtected::kNo);
|
2019-07-02 21:58:27 +00:00
|
|
|
check_vk_layout(beTex, VkLayout::kUndefined);
|
2019-06-07 18:21:31 +00:00
|
|
|
return beTex;
|
2019-05-21 21:24:31 +00:00
|
|
|
};
|
2019-05-16 16:43:11 +00:00
|
|
|
|
2019-05-21 21:24:31 +00:00
|
|
|
test_wrapping(context, reporter, uninitCreateMtd,
|
|
|
|
combo.fColorType, mipMapped, renderable);
|
|
|
|
}
|
2019-05-23 13:38:27 +00:00
|
|
|
|
|
|
|
{
|
2019-07-09 13:36:51 +00:00
|
|
|
// We're creating backend textures without specifying a color type "view" of
|
|
|
|
// them at the public API level. Therefore, Ganesh will not apply any swizzles
|
|
|
|
// before writing the color to the texture. However, our validation code does
|
|
|
|
// rely on interpreting the texture contents via a SkColorType and therefore
|
|
|
|
// swizzles may be applied during the read step.
|
|
|
|
// Ideally we'd update our validation code to use a "raw" read that doesn't
|
|
|
|
// impose a color type but for now we just munge the data we upload to match the
|
|
|
|
// expectation.
|
|
|
|
GrSwizzle swizzle;
|
|
|
|
switch (combo.fColorType) {
|
2019-07-26 15:13:19 +00:00
|
|
|
case GrColorType::kAlpha_8:
|
2019-07-09 13:36:51 +00:00
|
|
|
SkASSERT(combo.fFormat == VK_FORMAT_R8_UNORM);
|
|
|
|
swizzle = GrSwizzle("aaaa");
|
|
|
|
break;
|
2019-07-26 15:13:19 +00:00
|
|
|
case GrColorType::kABGR_4444:
|
2019-07-09 13:36:51 +00:00
|
|
|
if (combo.fFormat == VK_FORMAT_B4G4R4A4_UNORM_PACK16) {
|
|
|
|
swizzle = GrSwizzle("bgra");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
swizzle = GrSwizzle("rgba");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
auto createWithColorMtd = [format, swizzle](GrContext* context,
|
|
|
|
const SkColor4f& color,
|
|
|
|
GrMipMapped mipMapped,
|
|
|
|
GrRenderable renderable) {
|
|
|
|
auto swizzledColor = swizzle.applyTo(color);
|
2019-06-07 18:21:31 +00:00
|
|
|
GrBackendTexture beTex = context->createBackendTexture(32, 32, format,
|
2019-07-09 13:36:51 +00:00
|
|
|
swizzledColor,
|
|
|
|
mipMapped,
|
2019-07-01 19:04:06 +00:00
|
|
|
renderable,
|
|
|
|
GrProtected::kNo);
|
2019-07-02 21:58:27 +00:00
|
|
|
check_vk_layout(beTex, GrRenderable::kYes == renderable
|
|
|
|
? VkLayout::kColorAttachmentOptimal
|
|
|
|
: VkLayout::kReadOnlyOptimal);
|
2019-06-07 18:21:31 +00:00
|
|
|
return beTex;
|
2019-05-23 13:38:27 +00:00
|
|
|
};
|
|
|
|
test_color_init(context, reporter, createWithColorMtd,
|
|
|
|
combo.fColorType, combo.fColor, mipMapped, renderable);
|
|
|
|
}
|
2019-05-17 18:19:44 +00:00
|
|
|
}
|
2019-05-16 16:43:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|