2016-05-04 19:47:41 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
|
|
|
|
#include "Test.h"
|
|
|
|
|
|
|
|
#if SK_SUPPORT_GPU
|
2017-05-31 19:01:20 +00:00
|
|
|
|
2017-05-01 13:50:58 +00:00
|
|
|
#include "GrBackendSurface.h"
|
2018-01-08 18:40:32 +00:00
|
|
|
#include "GrContextPriv.h"
|
2018-01-16 13:06:32 +00:00
|
|
|
#include "GrProxyProvider.h"
|
2016-10-28 17:25:24 +00:00
|
|
|
#include "GrRenderTargetPriv.h"
|
2016-05-04 19:47:41 +00:00
|
|
|
#include "GrRenderTargetProxy.h"
|
2017-03-04 13:12:46 +00:00
|
|
|
#include "GrResourceProvider.h"
|
2017-08-31 12:56:07 +00:00
|
|
|
#include "GrSurfaceProxyPriv.h"
|
2017-06-13 16:44:56 +00:00
|
|
|
#include "GrTexture.h"
|
2017-03-04 13:12:46 +00:00
|
|
|
#include "GrTextureProxy.h"
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2016-08-31 21:04:06 +00:00
|
|
|
// Check that the surface proxy's member vars are set as expected
|
2016-05-04 19:47:41 +00:00
|
|
|
static void check_surface(skiatest::Reporter* reporter,
|
|
|
|
GrSurfaceProxy* proxy,
|
|
|
|
GrSurfaceOrigin origin,
|
2017-05-01 13:50:58 +00:00
|
|
|
int width, int height,
|
2016-08-31 21:04:06 +00:00
|
|
|
GrPixelConfig config,
|
2016-11-02 14:23:32 +00:00
|
|
|
SkBudgeted budgeted) {
|
2016-05-04 19:47:41 +00:00
|
|
|
REPORTER_ASSERT(reporter, proxy->origin() == origin);
|
|
|
|
REPORTER_ASSERT(reporter, proxy->width() == width);
|
|
|
|
REPORTER_ASSERT(reporter, proxy->height() == height);
|
|
|
|
REPORTER_ASSERT(reporter, proxy->config() == config);
|
2018-01-16 13:06:32 +00:00
|
|
|
REPORTER_ASSERT(reporter, !proxy->uniqueID().isInvalid());
|
2016-11-02 14:23:32 +00:00
|
|
|
REPORTER_ASSERT(reporter, proxy->isBudgeted() == budgeted);
|
2016-05-04 19:47:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void check_rendertarget(skiatest::Reporter* reporter,
|
2016-11-09 13:54:35 +00:00
|
|
|
const GrCaps& caps,
|
2017-03-04 13:12:46 +00:00
|
|
|
GrResourceProvider* provider,
|
2016-05-04 19:47:41 +00:00
|
|
|
GrRenderTargetProxy* rtProxy,
|
2016-11-02 14:23:32 +00:00
|
|
|
int numSamples,
|
2016-11-09 13:54:35 +00:00
|
|
|
SkBackingFit fit,
|
2016-11-11 17:38:40 +00:00
|
|
|
int expectedMaxWindowRects,
|
|
|
|
bool wasWrapped) {
|
2016-11-09 13:54:35 +00:00
|
|
|
REPORTER_ASSERT(reporter, rtProxy->maxWindowRectangles(caps) == expectedMaxWindowRects);
|
2016-11-02 14:23:32 +00:00
|
|
|
REPORTER_ASSERT(reporter, rtProxy->numStencilSamples() == numSamples);
|
|
|
|
|
2016-11-11 17:38:40 +00:00
|
|
|
GrSurfaceProxy::UniqueID idBefore = rtProxy->uniqueID();
|
2017-06-05 13:26:07 +00:00
|
|
|
REPORTER_ASSERT(reporter, rtProxy->instantiate(provider));
|
|
|
|
GrRenderTarget* rt = rtProxy->priv().peekRenderTarget();
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2016-11-11 17:38:40 +00:00
|
|
|
REPORTER_ASSERT(reporter, rtProxy->uniqueID() == idBefore);
|
|
|
|
if (wasWrapped) {
|
|
|
|
// Wrapped resources share their uniqueID with the wrapping RenderTargetProxy
|
|
|
|
REPORTER_ASSERT(reporter, rtProxy->uniqueID().asUInt() == rt->uniqueID().asUInt());
|
|
|
|
} else {
|
|
|
|
// Deferred resources should always have a different ID from their instantiated rendertarget
|
|
|
|
REPORTER_ASSERT(reporter, rtProxy->uniqueID().asUInt() != rt->uniqueID().asUInt());
|
|
|
|
}
|
|
|
|
|
2016-05-04 19:47:41 +00:00
|
|
|
if (SkBackingFit::kExact == fit) {
|
|
|
|
REPORTER_ASSERT(reporter, rt->width() == rtProxy->width());
|
|
|
|
REPORTER_ASSERT(reporter, rt->height() == rtProxy->height());
|
|
|
|
} else {
|
|
|
|
REPORTER_ASSERT(reporter, rt->width() >= rtProxy->width());
|
2016-11-11 17:38:40 +00:00
|
|
|
REPORTER_ASSERT(reporter, rt->height() >= rtProxy->height());
|
2016-05-04 19:47:41 +00:00
|
|
|
}
|
|
|
|
REPORTER_ASSERT(reporter, rt->config() == rtProxy->config());
|
|
|
|
|
2017-05-12 15:36:10 +00:00
|
|
|
REPORTER_ASSERT(reporter, rt->fsaaType() == rtProxy->fsaaType());
|
2016-05-04 19:47:41 +00:00
|
|
|
REPORTER_ASSERT(reporter, rt->numColorSamples() == rtProxy->numColorSamples());
|
|
|
|
REPORTER_ASSERT(reporter, rt->numStencilSamples() == rtProxy->numStencilSamples());
|
2016-08-10 18:09:07 +00:00
|
|
|
REPORTER_ASSERT(reporter, rt->renderTargetPriv().flags() == rtProxy->testingOnly_getFlags());
|
2016-05-04 19:47:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void check_texture(skiatest::Reporter* reporter,
|
2017-03-04 13:12:46 +00:00
|
|
|
GrResourceProvider* provider,
|
2016-05-04 19:47:41 +00:00
|
|
|
GrTextureProxy* texProxy,
|
2016-11-11 17:38:40 +00:00
|
|
|
SkBackingFit fit,
|
|
|
|
bool wasWrapped) {
|
|
|
|
GrSurfaceProxy::UniqueID idBefore = texProxy->uniqueID();
|
2017-06-05 13:26:07 +00:00
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, texProxy->instantiate(provider));
|
|
|
|
GrTexture* tex = texProxy->priv().peekTexture();
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2016-11-11 17:38:40 +00:00
|
|
|
REPORTER_ASSERT(reporter, texProxy->uniqueID() == idBefore);
|
|
|
|
if (wasWrapped) {
|
|
|
|
// Wrapped resources share their uniqueID with the wrapping TextureProxy
|
|
|
|
REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() == tex->uniqueID().asUInt());
|
|
|
|
} else {
|
|
|
|
// Deferred resources should always have a different ID from their instantiated texture
|
|
|
|
REPORTER_ASSERT(reporter, texProxy->uniqueID().asUInt() != tex->uniqueID().asUInt());
|
|
|
|
}
|
|
|
|
|
2016-05-04 19:47:41 +00:00
|
|
|
if (SkBackingFit::kExact == fit) {
|
|
|
|
REPORTER_ASSERT(reporter, tex->width() == texProxy->width());
|
|
|
|
REPORTER_ASSERT(reporter, tex->height() == texProxy->height());
|
|
|
|
} else {
|
|
|
|
REPORTER_ASSERT(reporter, tex->width() >= texProxy->width());
|
|
|
|
REPORTER_ASSERT(reporter, tex->height() >= texProxy->height());
|
|
|
|
}
|
|
|
|
REPORTER_ASSERT(reporter, tex->config() == texProxy->config());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-31 21:04:06 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(DeferredProxyTest, reporter, ctxInfo) {
|
2018-01-08 18:40:32 +00:00
|
|
|
GrProxyProvider* proxyProvider = ctxInfo.grContext()->contextPriv().proxyProvider();
|
2018-01-16 20:07:54 +00:00
|
|
|
GrResourceProvider* resourceProvider = ctxInfo.grContext()->contextPriv().resourceProvider();
|
2016-11-02 14:23:32 +00:00
|
|
|
const GrCaps& caps = *ctxInfo.grContext()->caps();
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2017-02-01 14:20:00 +00:00
|
|
|
int attempt = 0; // useful for debugging
|
|
|
|
|
2016-05-04 19:47:41 +00:00
|
|
|
for (auto origin : { kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin }) {
|
2017-01-30 19:15:59 +00:00
|
|
|
for (auto widthHeight : { 100, 128, 1048576 }) {
|
2017-02-01 14:20:00 +00:00
|
|
|
for (auto config : { kAlpha_8_GrPixelConfig, kRGB_565_GrPixelConfig,
|
2017-05-23 11:43:48 +00:00
|
|
|
kRGBA_8888_GrPixelConfig }) {
|
2016-05-04 19:47:41 +00:00
|
|
|
for (auto fit : { SkBackingFit::kExact, SkBackingFit::kApprox }) {
|
|
|
|
for (auto budgeted : { SkBudgeted::kYes, SkBudgeted::kNo }) {
|
2018-02-03 00:25:12 +00:00
|
|
|
for (auto numSamples : { 0, 4, 16, 128 }) {
|
2016-05-04 19:47:41 +00:00
|
|
|
GrSurfaceDesc desc;
|
2016-11-04 15:59:10 +00:00
|
|
|
desc.fFlags = kRenderTarget_GrSurfaceFlag;
|
2016-05-04 19:47:41 +00:00
|
|
|
desc.fOrigin = origin;
|
|
|
|
desc.fWidth = widthHeight;
|
|
|
|
desc.fHeight = widthHeight;
|
|
|
|
desc.fConfig = config;
|
|
|
|
desc.fSampleCnt = numSamples;
|
|
|
|
|
2017-02-01 14:20:00 +00:00
|
|
|
{
|
|
|
|
sk_sp<GrTexture> tex;
|
|
|
|
if (SkBackingFit::kApprox == fit) {
|
2018-01-08 18:40:32 +00:00
|
|
|
tex = resourceProvider->createApproxTexture(desc, 0);
|
2017-02-01 14:20:00 +00:00
|
|
|
} else {
|
2018-01-08 18:40:32 +00:00
|
|
|
tex = resourceProvider->createTexture(desc, budgeted);
|
2017-02-01 14:20:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-16 13:06:32 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(
|
|
|
|
desc, fit, budgeted);
|
2017-03-02 23:18:38 +00:00
|
|
|
REPORTER_ASSERT(reporter, SkToBool(tex) == SkToBool(proxy));
|
|
|
|
if (proxy) {
|
|
|
|
REPORTER_ASSERT(reporter, proxy->asRenderTargetProxy());
|
2017-01-30 19:15:59 +00:00
|
|
|
// This forces the proxy to compute and cache its
|
|
|
|
// pre-instantiation size guess. Later, when it is actually
|
|
|
|
// instantiated, it checks that the instantiated size is <= to
|
|
|
|
// the pre-computation. If the proxy never computed its
|
|
|
|
// pre-instantiation size then the check is skipped.
|
2017-03-02 23:18:38 +00:00
|
|
|
proxy->gpuMemorySize();
|
2017-01-30 19:15:59 +00:00
|
|
|
|
2017-03-02 23:18:38 +00:00
|
|
|
check_surface(reporter, proxy.get(), origin,
|
2018-01-16 13:06:32 +00:00
|
|
|
widthHeight, widthHeight, config, budgeted);
|
2018-02-03 00:25:12 +00:00
|
|
|
int supportedSamples = caps.getSampleCount(numSamples, config);
|
2018-01-08 18:40:32 +00:00
|
|
|
check_rendertarget(reporter, caps, resourceProvider,
|
2017-03-02 23:18:38 +00:00
|
|
|
proxy->asRenderTargetProxy(),
|
2017-07-19 18:47:42 +00:00
|
|
|
supportedSamples,
|
2017-01-30 19:15:59 +00:00
|
|
|
fit, caps.maxWindowRectangles(), false);
|
|
|
|
}
|
2016-05-04 19:47:41 +00:00
|
|
|
}
|
|
|
|
|
2016-11-04 15:59:10 +00:00
|
|
|
desc.fFlags = kNone_GrSurfaceFlags;
|
2017-02-01 14:20:00 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
sk_sp<GrTexture> tex;
|
|
|
|
if (SkBackingFit::kApprox == fit) {
|
2018-01-08 18:40:32 +00:00
|
|
|
tex = resourceProvider->createApproxTexture(desc, 0);
|
2017-02-01 14:20:00 +00:00
|
|
|
} else {
|
2018-01-08 18:40:32 +00:00
|
|
|
tex = resourceProvider->createTexture(desc, budgeted);
|
2017-02-01 14:20:00 +00:00
|
|
|
}
|
|
|
|
|
2018-01-16 13:06:32 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy(proxyProvider->createProxy(
|
|
|
|
desc, fit, budgeted));
|
2017-03-02 23:18:38 +00:00
|
|
|
REPORTER_ASSERT(reporter, SkToBool(tex) == SkToBool(proxy));
|
|
|
|
if (proxy) {
|
2018-01-08 18:40:32 +00:00
|
|
|
// This forces the proxy to compute and cache its
|
|
|
|
// pre-instantiation size guess. Later, when it is actually
|
|
|
|
// instantiated, it checks that the instantiated size is <= to
|
|
|
|
// the pre-computation. If the proxy never computed its
|
|
|
|
// pre-instantiation size then the check is skipped.
|
2017-03-02 23:18:38 +00:00
|
|
|
proxy->gpuMemorySize();
|
2017-02-01 14:20:00 +00:00
|
|
|
|
2017-03-02 23:18:38 +00:00
|
|
|
check_surface(reporter, proxy.get(), origin,
|
2018-01-16 13:06:32 +00:00
|
|
|
widthHeight, widthHeight, config, budgeted);
|
2018-01-08 18:40:32 +00:00
|
|
|
check_texture(reporter, resourceProvider,
|
|
|
|
proxy->asTextureProxy(), fit, false);
|
2017-02-01 14:20:00 +00:00
|
|
|
}
|
2017-01-30 19:15:59 +00:00
|
|
|
}
|
2017-02-01 14:20:00 +00:00
|
|
|
|
|
|
|
attempt++;
|
2016-05-04 19:47:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-28 15:07:26 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(WrappedProxyTest, reporter, ctxInfo) {
|
2018-01-16 13:06:32 +00:00
|
|
|
GrProxyProvider* proxyProvider = ctxInfo.grContext()->contextPriv().proxyProvider();
|
2018-01-16 20:07:54 +00:00
|
|
|
GrResourceProvider* resourceProvider = ctxInfo.grContext()->contextPriv().resourceProvider();
|
2016-08-10 18:09:07 +00:00
|
|
|
const GrCaps& caps = *ctxInfo.grContext()->caps();
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
static const int kWidthHeight = 100;
|
|
|
|
|
|
|
|
for (auto origin : { kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin }) {
|
|
|
|
for (auto config : { kAlpha_8_GrPixelConfig, kRGBA_8888_GrPixelConfig }) {
|
|
|
|
for (auto budgeted : { SkBudgeted::kYes, SkBudgeted::kNo }) {
|
2018-02-03 00:25:12 +00:00
|
|
|
for (auto numSamples: { 0, 4}) {
|
|
|
|
int supportedNumSamples = caps.getSampleCount(numSamples, config);
|
|
|
|
|
|
|
|
bool renderable = caps.isConfigRenderable(config, numSamples > 0);
|
2016-05-04 19:47:41 +00:00
|
|
|
|
|
|
|
GrSurfaceDesc desc;
|
|
|
|
desc.fOrigin = origin;
|
|
|
|
desc.fWidth = kWidthHeight;
|
|
|
|
desc.fHeight = kWidthHeight;
|
|
|
|
desc.fConfig = config;
|
2017-07-19 18:47:42 +00:00
|
|
|
desc.fSampleCnt = supportedNumSamples;
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2016-08-10 18:09:07 +00:00
|
|
|
// External on-screen render target.
|
2018-02-03 00:25:12 +00:00
|
|
|
if (renderable && kOpenGL_GrBackend == ctxInfo.backend()) {
|
2017-05-01 13:50:58 +00:00
|
|
|
GrGLFramebufferInfo fboInfo;
|
|
|
|
fboInfo.fFBOID = 0;
|
|
|
|
GrBackendRenderTarget backendRT(kWidthHeight, kWidthHeight, numSamples, 8,
|
|
|
|
config, fboInfo);
|
2016-08-10 18:09:07 +00:00
|
|
|
|
2018-01-16 13:06:32 +00:00
|
|
|
sk_sp<GrSurfaceProxy> sProxy(proxyProvider->createWrappedRenderTargetProxy(
|
|
|
|
backendRT, origin));
|
2016-11-09 11:50:43 +00:00
|
|
|
check_surface(reporter, sProxy.get(), origin,
|
2018-01-16 13:06:32 +00:00
|
|
|
kWidthHeight, kWidthHeight, config, SkBudgeted::kNo);
|
2018-01-16 20:07:54 +00:00
|
|
|
check_rendertarget(reporter, caps, resourceProvider,
|
|
|
|
sProxy->asRenderTargetProxy(),
|
2017-07-20 13:11:41 +00:00
|
|
|
supportedNumSamples, SkBackingFit::kExact, 0, true);
|
2016-08-10 18:09:07 +00:00
|
|
|
}
|
|
|
|
|
2018-02-03 00:25:12 +00:00
|
|
|
if (renderable) {
|
2018-01-16 13:06:32 +00:00
|
|
|
// Internal offscreen render target.
|
2016-05-04 19:47:41 +00:00
|
|
|
desc.fFlags = kRenderTarget_GrSurfaceFlag;
|
2018-01-16 13:06:32 +00:00
|
|
|
|
|
|
|
sk_sp<GrSurfaceProxy> sProxy = proxyProvider->createInstantiatedProxy(
|
|
|
|
desc, SkBackingFit::kExact, budgeted);
|
|
|
|
if (!sProxy) {
|
|
|
|
continue; // This can fail on Mesa
|
2017-08-02 15:51:43 +00:00
|
|
|
}
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2016-11-09 11:50:43 +00:00
|
|
|
check_surface(reporter, sProxy.get(), origin,
|
2018-01-16 13:06:32 +00:00
|
|
|
kWidthHeight, kWidthHeight, config, budgeted);
|
2018-01-16 20:07:54 +00:00
|
|
|
check_rendertarget(reporter, caps, resourceProvider,
|
|
|
|
sProxy->asRenderTargetProxy(),
|
2017-07-20 13:11:41 +00:00
|
|
|
supportedNumSamples, SkBackingFit::kExact,
|
2016-11-11 17:38:40 +00:00
|
|
|
caps.maxWindowRectangles(), true);
|
2018-01-16 13:06:32 +00:00
|
|
|
} else {
|
|
|
|
// Internal offscreen texture
|
2016-05-04 19:47:41 +00:00
|
|
|
SkASSERT(kNone_GrSurfaceFlags == desc.fFlags );
|
2018-02-03 00:25:12 +00:00
|
|
|
desc.fSampleCnt = 0;
|
2016-05-04 19:47:41 +00:00
|
|
|
|
2018-01-16 13:06:32 +00:00
|
|
|
sk_sp<GrSurfaceProxy> sProxy = proxyProvider->createInstantiatedProxy(
|
|
|
|
desc, SkBackingFit::kExact, budgeted);
|
|
|
|
if (!sProxy) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
check_surface(reporter, sProxy.get(), origin,
|
|
|
|
kWidthHeight, kWidthHeight, config, budgeted);
|
2018-01-16 20:07:54 +00:00
|
|
|
check_texture(reporter, resourceProvider, sProxy->asTextureProxy(),
|
2018-01-16 13:06:32 +00:00
|
|
|
SkBackingFit::kExact, true);
|
|
|
|
}
|
2016-05-04 19:47:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-26 11:44:26 +00:00
|
|
|
DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ZeroSizedProxyTest, reporter, ctxInfo) {
|
2018-01-08 18:40:32 +00:00
|
|
|
GrProxyProvider* provider = ctxInfo.grContext()->contextPriv().proxyProvider();
|
2017-04-26 11:44:26 +00:00
|
|
|
|
|
|
|
for (auto flags : { kRenderTarget_GrSurfaceFlag, kNone_GrSurfaceFlags }) {
|
|
|
|
for (auto fit : { SkBackingFit::kExact, SkBackingFit::kApprox }) {
|
|
|
|
for (int width : { 0, 100 }) {
|
|
|
|
for (int height : { 0, 100}) {
|
|
|
|
if (width && height) {
|
|
|
|
continue; // not zero-sized
|
|
|
|
}
|
|
|
|
|
|
|
|
GrSurfaceDesc desc;
|
|
|
|
desc.fFlags = flags;
|
|
|
|
desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
|
|
|
|
desc.fWidth = width;
|
|
|
|
desc.fHeight = height;
|
|
|
|
desc.fConfig = kRGBA_8888_GrPixelConfig;
|
2018-02-03 00:25:12 +00:00
|
|
|
desc.fSampleCnt = 0;
|
2017-04-26 11:44:26 +00:00
|
|
|
|
2018-01-16 13:06:32 +00:00
|
|
|
sk_sp<GrTextureProxy> proxy = provider->createProxy(desc, fit, SkBudgeted::kNo);
|
2017-04-26 11:44:26 +00:00
|
|
|
REPORTER_ASSERT(reporter, !proxy);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-04 19:47:41 +00:00
|
|
|
#endif
|