2914555e00
This reverts commit c22e50bd31
.
Reason for revert: Speculative fix for Android roll
Original change's description:
> Move more internal methods from GrContext to GrContextPriv (take 2)
>
> Change-Id: I47108910517d61edeb52f82793d384fdb5605d45
> Reviewed-on: https://skia-review.googlesource.com/97241
> Commit-Queue: Robert Phillips <robertphillips@google.com>
> Reviewed-by: Greg Daniel <egdaniel@google.com>
TBR=egdaniel@google.com,bsalomon@google.com,robertphillips@google.com
Change-Id: I3a77ac33c5f48529357cf9c683d5f4cacaa2379f
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/97582
Reviewed-by: Leon Scroggins <scroggo@google.com>
Commit-Queue: Leon Scroggins <scroggo@google.com>
166 lines
6.1 KiB
C++
166 lines
6.1 KiB
C++
/*
|
|
* Copyright 2016 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 GPU-backend specific test. It relies on static intializers to work
|
|
|
|
#include "SkTypes.h"
|
|
|
|
#if SK_SUPPORT_GPU && defined(SK_VULKAN)
|
|
|
|
#include "GrContextFactory.h"
|
|
#include "GrRenderTarget.h"
|
|
#include "GrTest.h"
|
|
#include "GrTexture.h"
|
|
|
|
#include "Test.h"
|
|
#include "vk/GrVkCaps.h"
|
|
#include "vk/GrVkGpu.h"
|
|
#include "vk/GrVkMemory.h"
|
|
#include "vk/GrVkTypes.h"
|
|
|
|
using sk_gpu_test::GrContextFactory;
|
|
|
|
const int kW = 1024;
|
|
const int kH = 1024;
|
|
const GrPixelConfig kPixelConfig = kRGBA_8888_GrPixelConfig;
|
|
|
|
void wrap_tex_test(skiatest::Reporter* reporter, GrContext* context) {
|
|
|
|
GrVkGpu* gpu = static_cast<GrVkGpu*>(context->getGpu());
|
|
|
|
GrBackendTexture origBackendTex = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
|
|
kPixelConfig, false,
|
|
GrMipMapped::kNo);
|
|
const GrVkImageInfo* imageInfo = origBackendTex.getVkImageInfo();
|
|
|
|
sk_sp<GrTexture> tex = gpu->wrapBackendTexture(origBackendTex, kBorrow_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, tex);
|
|
|
|
// image is null
|
|
{
|
|
GrVkImageInfo backendCopy = *imageInfo;
|
|
backendCopy.fImage = VK_NULL_HANDLE;
|
|
GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy);
|
|
tex = gpu->wrapBackendTexture(backendTex, kBorrow_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, !tex);
|
|
tex = gpu->wrapBackendTexture(backendTex, kAdopt_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, !tex);
|
|
}
|
|
|
|
// alloc is null
|
|
{
|
|
GrVkImageInfo backendCopy = *imageInfo;
|
|
backendCopy.fAlloc = { VK_NULL_HANDLE, 0, 0, 0 };
|
|
GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy);
|
|
tex = gpu->wrapBackendTexture(backendTex, kBorrow_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, !tex);
|
|
tex = gpu->wrapBackendTexture(backendTex, kAdopt_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, !tex);
|
|
}
|
|
|
|
// check adopt creation
|
|
{
|
|
GrVkImageInfo backendCopy = *imageInfo;
|
|
GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy);
|
|
tex = gpu->wrapBackendTexture(backendTex, kAdopt_GrWrapOwnership);
|
|
|
|
REPORTER_ASSERT(reporter, tex);
|
|
}
|
|
|
|
gpu->deleteTestingOnlyBackendTexture(&origBackendTex, true);
|
|
}
|
|
|
|
void wrap_rt_test(skiatest::Reporter* reporter, GrContext* context) {
|
|
GrVkGpu* gpu = static_cast<GrVkGpu*>(context->getGpu());
|
|
|
|
GrBackendTexture origBackendTex = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
|
|
kPixelConfig, true,
|
|
GrMipMapped::kNo);
|
|
const GrVkImageInfo* imageInfo = origBackendTex.getVkImageInfo();
|
|
|
|
GrBackendRenderTarget origBackendRT(kW, kH, 0, 0, *imageInfo);
|
|
|
|
sk_sp<GrRenderTarget> rt = gpu->wrapBackendRenderTarget(origBackendRT);
|
|
REPORTER_ASSERT(reporter, rt);
|
|
|
|
// image is null
|
|
{
|
|
GrVkImageInfo backendCopy = *imageInfo;
|
|
backendCopy.fImage = VK_NULL_HANDLE;
|
|
GrBackendRenderTarget backendRT(kW, kH, 0, 0, backendCopy);
|
|
rt = gpu->wrapBackendRenderTarget(backendRT);
|
|
REPORTER_ASSERT(reporter, !rt);
|
|
}
|
|
|
|
// alloc is null
|
|
{
|
|
GrVkImageInfo backendCopy = *imageInfo;
|
|
backendCopy.fAlloc = { VK_NULL_HANDLE, 0, 0, 0 };
|
|
// can wrap null alloc
|
|
GrBackendRenderTarget backendRT(kW, kH, 0, 0, backendCopy);
|
|
rt = gpu->wrapBackendRenderTarget(backendRT);
|
|
REPORTER_ASSERT(reporter, rt);
|
|
}
|
|
|
|
// When we wrapBackendRenderTarget it is always borrowed, so we must make sure to free the
|
|
// resource when we're done.
|
|
gpu->deleteTestingOnlyBackendTexture(&origBackendTex);
|
|
}
|
|
|
|
void wrap_trt_test(skiatest::Reporter* reporter, GrContext* context) {
|
|
GrVkGpu* gpu = static_cast<GrVkGpu*>(context->getGpu());
|
|
|
|
GrBackendTexture origBackendTex = gpu->createTestingOnlyBackendTexture(nullptr, kW, kH,
|
|
kPixelConfig, true,
|
|
GrMipMapped::kNo);
|
|
const GrVkImageInfo* imageInfo = origBackendTex.getVkImageInfo();
|
|
|
|
sk_sp<GrTexture> tex = gpu->wrapRenderableBackendTexture(origBackendTex, 0,
|
|
kBorrow_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, tex);
|
|
|
|
// image is null
|
|
{
|
|
GrVkImageInfo backendCopy = *imageInfo;
|
|
backendCopy.fImage = VK_NULL_HANDLE;
|
|
GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy);
|
|
tex = gpu->wrapRenderableBackendTexture(backendTex, 0, kBorrow_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, !tex);
|
|
tex = gpu->wrapRenderableBackendTexture(backendTex, 0, kAdopt_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, !tex);
|
|
}
|
|
|
|
// alloc is null
|
|
{
|
|
GrVkImageInfo backendCopy = *imageInfo;
|
|
backendCopy.fAlloc = { VK_NULL_HANDLE, 0, 0, 0 };
|
|
GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy);
|
|
tex = gpu->wrapRenderableBackendTexture(backendTex, 0, kBorrow_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, !tex);
|
|
tex = gpu->wrapRenderableBackendTexture(backendTex, 0, kAdopt_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, !tex);
|
|
}
|
|
|
|
// check adopt creation
|
|
{
|
|
GrVkImageInfo backendCopy = *imageInfo;
|
|
GrBackendTexture backendTex = GrBackendTexture(kW, kH, backendCopy);
|
|
tex = gpu->wrapRenderableBackendTexture(backendTex, 0, kAdopt_GrWrapOwnership);
|
|
REPORTER_ASSERT(reporter, tex);
|
|
}
|
|
|
|
gpu->deleteTestingOnlyBackendTexture(&origBackendTex, true);
|
|
}
|
|
|
|
DEF_GPUTEST_FOR_VULKAN_CONTEXT(VkWrapTests, reporter, ctxInfo) {
|
|
wrap_tex_test(reporter, ctxInfo.grContext());
|
|
wrap_rt_test(reporter, ctxInfo.grContext());
|
|
wrap_trt_test(reporter, ctxInfo.grContext());
|
|
}
|
|
|
|
#endif
|